I am trying to create a stand alone app that will not have access to the Maven.
I have a Maven project that is working on my windows system. I ran the Maven dependency to get the list of jar files needed. I then created a stand alone java project without Maven, and copied all the jar files into the lib folder.
I am still getting org.nd4j.linalg.factory.Nd4jBackend: org.nd4j.linalg.cpu.CpuBackend Unable to get public no-arg constructor. How can I figure out what Backend jar file is missing?
Kevin
@kelauder you can see here:
Basically for development you can use nd4j-native-platform. Multiple operating system jars will show up here.
After that you can use the jar without the classifier plus the one with the windows-x86_64 classifier.
Ensure both are included.
The platform specific jars and the one with the bindings (no classifier) are all you should need. nd4j-native-platform when you see it just declares those for you but includes everything and makes your jar over sized.
Hope that helps.
Thanks - I got it working.