normalization for neural network
显示 更早的评论
need clarification on normalization.
I have 3 inputs (with different units), 1 output and a total of 27 samples. 21 samples will be used for training and another 6 samples for testing. my inputs and output is not in range 0 to 1. so i need to normalize it.my questions is
Do i need to normalize it by column or row or input/output? let say, here are the first 3 samples of inputs and outputs
- inputs >> output
- 3 45 -10 >> 3
- 5 55 -3 >> 56
- 6 23 -4 >> 32
*note that all 3 inputs are in different units
so, do i need to normalize by row (3 45 -10) or by column (3 5 6) or using all inputs [3 45 -10; 5 55 -3; 6 23 -4] without considering the units at the same time?
i want to normalize in 0.1-0.9 range. can i used mapminmax?
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!