FuruiTatsu
FuruiTatsu

Reputation: 71

Using the code to input data for backpropagation

I am learning to build neural nets and I came across this code on github,

https://github.com/PavelJunek/back-propagation-java

There is a training set and a validation set required to be used but I don't know where to input the files. The Readme doesn't quite explain how to use the files. How do I test with different csv files I have on this code?

Upvotes: 0

Views: 271

Answers (1)

bramvdwalle
bramvdwalle

Reputation: 89

How so? It tells you exactly what to do. The program needs to get two CSV files: a CSV file containing all the training data and a second CSV file containing all of the validation data.

If you have a look at the Program.java file (in the main method), you'll see that you need to pass both files as arguments with the command line.

Upvotes: 1

Related Questions