Validate net in neural network on different input
1 次查看(过去 30 天)
显示 更早的评论
I run the script from neural network time series tool, giving input1 and target1 to the net, and I receive output1. I want to validate the model just obtained on a new input2, expecting to receive a new output2. To do that I do the following:
- run the script a first time, receive output1
- save the net as net2
- load net2
- output2 = net2(input2)
Unfortunately instead of having a new output, my output2 is exactly the same as output1. Changing the input, the net shouldn't adapt itself to the new input and formulate a new output?
1 个评论
Greg Heath
2018-4-13
Validate is a reserved word in MATLAB.
Replace your term validate with another term like verify.
Hope this helps
Greg
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!