Is normalization necessary for input and output data in an Artificial Neural Network (ANN)? Does it impact the network's performance?
8 次查看(过去 30 天)
显示 更早的评论
Is normalization necessary for input and output data in an Artificial Neural Network (ANN)? Does it impact the network's performance?
2 个评论
Mohammed
2023-12-9
Yes , the input and the output nessecary to export them in workspace this stap is important , and of course you should remembre the lenght of your inputs and outputs is the same lenght to plot the graph normally
if you want to see my project about ANN you can go and check my repository in github:
采纳的回答
Walter Roberson
2023-12-10
Is normalization necessary for input and output data in an Artificial Neural Network (ANN)
No, it is not necessary.
Does it impact the network's performance?
Yes, it does affect network's performance.
When features are to different scales, then methods such as gradient descent tend to favour the features unequally. This results in effectively weighting some features differently than others. If you are considering each feature as having value relative only to itself, then you need to normalize in order to be fair. If, though, the values have meaning between features, then you do not always want to rescale.
0 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!