Neural Networks - Can I constrain the range of the output of the network?
8 次查看(过去 30 天)
显示 更早的评论
Hi all,
I am currently running a NN using fitnet. It's a function fitting - regression - type problem that I'm trying to train the network to solve.
From my research, I think the way to constrain the output range of the network is by selecting a suitable transform function in the final layer of the network. I've read the manual and couldn't find much about restricting the output. I want to restrict the range of the solution to [0,100] (due to the physical nature of the problem), any value within this range is acceptable. Can anyone help me with this please?
My current network looks like the attached image.
Many thanks
0 个评论
回答(2 个)
Greg Heath
2016-10-3
You probably only need 1 hidden node.
Scale the output from 0 to 1 and use a logsig output function.
Hope this helps
Greg
4 个评论
Greg Heath
2016-10-5
Sorry, I made a mistake in my first reply.
I meant to say you only need one hidden layer.
Use as few hidden nodes as possible to get your desired output. My goal is usually
NMSE = mse(target-output)/mean(var(target',1))
<= 0.01
this will yield a
Rsquare =1-NMSE >= 0.99
Search Google for Rsquare.
Cesare Trematore
2019-5-21
What should I do if I want a disjoint output? Say that in the range 0-1 my output should be either in range 0_.25 or in the range .75-1? cesare
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!