org.nd4j.linalg.factory.Nd4jBackend$NoAvailableBackendException in wildfly

430 Views Asked by At

I am using deeplearning4j with JBOSS wildfly. I have placed all the modules as mentioned below in the classpath:

<module name="org.nd4j.jackson" />
<module name="org.nd4j.nd4j-api" />
<module name="org.nd4j.nd4j-context" />
<module name="org.nd4j.nd4j-common" />
<module name="org.nd4j.nd4j-cuda-92" />
<module name="org.nd4j.nd4j-cuda-92-platform" />
<module name="org.nd4j.nd4j-native" />
<module name="org.nd4j.nd4j-native-api" />
<module name="org.nd4j.nd4j-native-platform" />
<module name="org.bytedeco.javacpp" />
<module name="org.bytedeco.javacpp-presets.cuda" />
<module name="org.bytedeco.javacpp-presets.cuda-platform" />
<module name="org.bytedeco.javacpp-presets.mkl" />
<module name="org.bytedeco.javacpp-presets.openblas" />
<module name="org.bytedeco.javacv" />
<module name="org.datavec.datavec-api" />
<module name="org.deeplearning4j.deeplearning4j-core" />
<module name="org.deeplearning4j.deeplearning4j-nlp" />
<module name="org.deeplearning4j.deeplearning4j-nn" />

I am still getting an exception java.lang.RuntimeException:

org.nd4j.linalg.factory.Nd4jBackend$NoAvailableBackendException: Please ensure that you have an nd4j backend on your classpath. Please see: http://nd4j.org/getstarted.html
at org.nd4j.linalg.factory.Nd4j.initContext(Nd4j.java:5449)
while executing the below line of code, basically where I read the model
org.deeplearning4j.models.embeddings.loader.WordVectorSerializer.readWord2Vec(WordVectorSerializer.java:787)

Any idea what could be going on here?

1

There are 1 best solutions below

0
On

ND4j uses ServiceLoader to find the backend. In the Wildfly to enable this, in the jboss-deployment-structure.xml mention services="import".

<jboss-deployment-structure xmlns="urn:jboss:deployment-structure:1.1">  
  <deployment>  
    <dependencies>  
      <module name="module.name" services="import"/>  
    </dependencies>  
  </deployment>    
</jboss-deployment-structure>