barbeau / EncogME

A port of the Encog neural network project to Java Micro Edition, as well as supporting server-side projects that allow a neural network to be trained server-side, and then have the trained model extracted and transferred to the mobile phone for neural net execution in real-time on the mobile device.
https://github.com/barbeau/EncogME/wiki
3 stars 2 forks source link

Problem building Encog ME #2

Open barbeau opened 9 years ago

barbeau commented 9 years ago

From a user:

Once i import encogME in netbeans and resolve dependencies (maven) i still get an error in multiple classes, about the persistor. In some classes (for example BasicLayer ) you have the createPersistor() method in which you return a new [classname]Persistor object. In each one of these classes i get an error of unreachable statement for the return new [classname]Persistor(); statement. Basically the object being returned is not known. For example in BasicLayer netbeans suggests that i create the class BasicLayerPersistor in the BasicLayer class. Any suggestions?

barbeau commented 9 years ago

IIRC, the EncogCoreJavaME project should just import into Netbeans as a Java ME library project - no Maven involved at all. It should just build, as all the required classes are included as .java files in the project.

Can you get this single library project to build? Or is the problem with the EncogJavaMEApp?