Displaying 1 result from an estimated 1 matches for "intput1".
Did you mean:
input1
2012 Aug 27
0
Optimizing a model toward desired outputs once trained?
...ats.stackexchange.com/questions/34415/optimization-of-models-ann-radial-basis-etc-in-r-to-target-predictor-levels
What I'm looking for, using neuralnet as an example, is how to guide a
model toward an output profile once the model is trained. For example:
model1 <- neuralnet(formula=out1 ~ intput1 + input2 + input3 + input4,
data=train, hidden=6,
threshold=0.05, linear.output=TRUE)
model2 <- neuralnet(formula=out2 ~ intput1 + input2 + input3 + input4,
data=train, hidden=6,
threshold=0.05, linear.output=TRUE)
And so on.
Once I've trained each of...