08-13-2024, 04:58 PM
(translated by Google translator)
Hello.
If I look quickly, I saw three suspicious places.
First, in your code " NeuralNetwork.BinaryOutput(name,0,"False") " the parameter indicating that BINARY data is used is set to "False".
But, you are using BINARY input data.
Therefore, this parameter should be set to "True".
Secondly, you have commented out the line of code that should create the training data file: " 'File.WriteContents(trainingData,data) "
Uncomment it.
And thirdly, you are incorrectly creating training data and setting input data for the neural network to work.
Here is an example of usage: " NeuralNetwork.Use(Name, "0, 0") "
" input = "0, 0" "
Hello.

If I look quickly, I saw three suspicious places.
First, in your code " NeuralNetwork.BinaryOutput(name,0,"False") " the parameter indicating that BINARY data is used is set to "False".
But, you are using BINARY input data.
Therefore, this parameter should be set to "True".
Secondly, you have commented out the line of code that should create the training data file: " 'File.WriteContents(trainingData,data) "
Uncomment it.
And thirdly, you are incorrectly creating training data and setting input data for the neural network to work.
Here is an example of usage: " NeuralNetwork.Use(Name, "0, 0") "
" input = "0, 0" "