I’m looking to use DL4J’s word embeddings features in an existing Java project as shown in the example here.
Could somebody please confirm the JAR files I need to add to my project to get this working?
From what I could tell, I need to be adding deeplearning4j-core, deeplearning4j-nlp and probably the relevant nd4j and datavec ones. The example project contains a lot of JARs and I’m only looking to add the ones relevant to this implementation.
I guess what I was looking for here is the exact list of artifacts to be added to pom.xml and the relevant JARs to be used (if necessary) in order to support this word embeddings operation.
You can usually find what artifact you need by going to the repository on Github, pressing the t button on your keyboard to trigger the github file search
Enter the class name there.
When you have found the appropriate file, click on the parent directory of the src directory to find the pom.xml file for that submodule
Open the pom.xml file to find the necessary information about the groupId and artifactId of that module