I have tried using the example from Normalization 101 in the wiki, but I don't know what to do after I have trained the network.
Can I now input 10 new values (e.g. [1,1,1,0.77,0,1,1,1,0,0]) and get whether it was enjoyable or not (e.g. 1 or 0)?
How do I use the trained network?
I have tried writing the perceptron object to a file to see what has happened, but I don't understand the output. It seems it holds an array with all the neurons in the network and an array with all the connections between the neurons, each with some weights.
I have tried using the example from
Normalization 101
in the wiki, but I don't know what to do after I have trained the network.Can I now input 10 new values (e.g.
[1,1,1,0.77,0,1,1,1,0,0]
) and get whether it was enjoyable or not (e.g.1
or0
)?How do I use the trained network?
I have tried writing the
perceptron
object to a file to see what has happened, but I don't understand the output. It seems it holds an array with all the neurons in the network and an array with all the connections between the neurons, each with some weights.