-1

I trying to import last version of org.nd4j:nd4j-api:0.4-rc3.7, but there is only org.nd4j:nd4j-api:0.4-rc1.2. So, how to add last version of nd4j?

sschrass
  • 7,014
  • 6
  • 43
  • 62
AshFTW
  • 141
  • 3
  • 12

1 Answers1

2

Add this to your pom.xml

<dependency>
    <groupId>org.nd4j</groupId>
    <artifactId>nd4j-api</artifactId>
    <version>0.4-rc3.7</version>
</dependency>

Make sure your maven has access to maven central.

sschrass
  • 7,014
  • 6
  • 43
  • 62