normalization for neural network
Show older comments
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?
Accepted Answer
More Answers (0)
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!