I made a program that tries to use neuroph made neural network consisting of one line of code (beside imports, main etc.)
NeuralNetwork nnet = NeuralNetwork.createFromFile('path here');
The first error I got was:
Exception in thread "main" java.lang.NoClassDefFoundError: Lorg/slf4j/Logger;
After adding slf4j-api-1.7.25.jar
I get:
Exception in thread "main" org.neuroph.core.exceptions.NeurophException: Class not found while trying to read neural network from file!
I also tried with other versions of slf4j
I could get. Sounds good, does not work. I have no idea how to begin fixing it.