-1

I need to use deeplearning4j library in a new java project.

I downloaded .jar (in particoular deeplearning4j-core and ndj4-api-platform) from maven library.

I imported that in eclipse

I receive an error because org.ndj4.api.complex.IComplexNumber is not found.

Where may I find a .jar with that classes?

Phil
  • 115
  • 1
  • 11

1 Answers1

2

Please import our examples and use maven (or some build system): https://github.com/deeplearning4j/dl4j-examples/

I say this due to the sheer number of jars you need for running dl4j. I would consider using maven rather than avoiding it.

https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html

We say all of this right in the deeplearning4j quickstart: http://deeplearning4j.org/quickstart

I would suggest reading the docs for the project rather than trying to figure it out yourself. You are only wasting time by doing that.

Adam Gibson
  • 3,055
  • 1
  • 10
  • 12