===============================================================================java
解決方法:I had the same problem. But the issue was I was using the wrong import , nd4j-native. Instead of that I used nd4j-native-platform import and it fixed the problem. Hope it helps.web
<dependency> <groupId>org.nd4j</groupId> <artifactId>nd4j-native</artifactId> <version>1.0.0-alpha</version> </dependency> 修改成 <dependency> <groupId>org.nd4j</groupId> <artifactId>nd4j-native-platform</artifactId> <version>1.0.0-alpha</version> </dependency>
============================================================================spa
favoritecode
I am learning deep learning, and use deeplearning4J tuts. But when i run example code, some issue there :orm
Caused by: java.lang.UnsatisfiedLinkError: no jnind4j in java.library.path at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1867) at java.lang.Runtime.loadLibrary0(Runtime.java:870) at java.lang.System.loadLibrary(System.java:1122) at org.bytedeco.javacpp.Loader.loadLibrary(Loader.java:727) at org.bytedeco.javacpp.Loader.load(Loader.java:502) at org.nd4j.nativeblas.NativeOps.<clinit>(NativeOps.java:37) ... 18 more
i have tried some solutions on web but it doesnot work. So, if you know how to fix it, help me.ip