07-24-2024, 03:38 PM
LitDev,
If I take your program and comment out the following lines and want to load the neural network that I previously created. I get the below error:
name = "XOrANN"
'NeuralNetwork.New(name,inputNode+","+hiddenNode+","+outputNode)
'NeuralNetwork.BinaryOutput(name,0,"False")
'NeuralNetwork.Save(name,Program.Directory+"\"+name+".txt")
name = NeuralNetwork.Load(Program.Directory+"\"+name+".txt")
Error in Small Basic program
Index was ouside the bounds of the array.
at SmallBasicANN.ANN..ctor(String fn)
at SmallBasicANN.NeuralNetwork.Load(Primitive Filename)
at _SmallBasicProgram._Main()
Any idea on what causes this? I would think that I should be able to load a previously created neural file.
If I take your program and comment out the following lines and want to load the neural network that I previously created. I get the below error:
name = "XOrANN"
'NeuralNetwork.New(name,inputNode+","+hiddenNode+","+outputNode)
'NeuralNetwork.BinaryOutput(name,0,"False")
'NeuralNetwork.Save(name,Program.Directory+"\"+name+".txt")
name = NeuralNetwork.Load(Program.Directory+"\"+name+".txt")
Error in Small Basic program
Index was ouside the bounds of the array.
at SmallBasicANN.ANN..ctor(String fn)
at SmallBasicANN.NeuralNetwork.Load(Primitive Filename)
at _SmallBasicProgram._Main()
Any idea on what causes this? I would think that I should be able to load a previously created neural file.