Should I normalize my features before throwing them into RNN?

前端 未结 3 1161
执念已碎
执念已碎 2021-02-06 09:57

I am playing some demos about recurrent neural network.

I noticed that the scale of my data in each column differs a lot. So I am considering to do some preprocess work

3条回答
  •  再見小時候
    2021-02-06 10:25

    Definetly yes. Most of neural networks work best with data beetwen 0-1 or -1 to 1(depends on output function). Also when some inputs are higher then others network will "think" they are more important. This can make learning very long. Network must first lower weights in this inputs.

提交回复
热议问题