Neural Networks - Can I constrain the range of the output of the network?

24 次查看(过去 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

回答(2 个)

Greg Heath
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 个评论
jlt199
jlt199 2016-10-4
Thanks Greg,
My target values are scaled between 0 and 100, which is the range I'm after, but the output from the neural network (although mostly correct) has some wild outliers for example -350 or +400.
I think what you are suggesting is to scale my target vector between 0 and 1 and use that in combination with a logsig function in the final layer. Is this correct? I will try it first thing in the morning.
Thanks again
Greg Heath
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
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

类别

Help CenterFile Exchange 中查找有关 Deep Learning Toolbox 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by