Contents

Overview/Introduction

We provide automated daily builds of repositories such as ND4J, DataVec, DeepLearning4j, RL4J etc. So all the newest functionality and most recent bug fixes are released daily.

Snapshots work like any other Maven dependency. The only difference is that they are served from a custom repository rather than from Maven Central.

Due to ongoing development, snapshots should be considered less stable than releases: breaking changes or bugs can in principle be introduced at any point during the course of normal development. Typically, releases (not snapshots) should be used when possible, unless a bug fix or new feature is required.

Setup Instructions

Step 1:To use snapshots in your project, you should add snapshot repository information like this to your pom.xml file:

  1. <repositories>
  2. <repository>
  3. <id>snapshots-repo</id>
  4. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  5. <releases>
  6. <enabled>false</enabled>
  7. </releases>
  8. <snapshots>
  9. <enabled>true</enabled>
  10. <updatePolicy>daily</updatePolicy> <!-- Optional, update daily -->
  11. </snapshots>
  12. </repository>
  13. </repositories>

Step 2:Make sure to specify the snapshot version. We follow a simple rule: If the latest stable release version is A.B.C, the snapshot version will be A.B.(C+1)-SNAPSHOT. The current snapshot version is 1.0.0-SNAPSHOT.For more details on the repositories section of the pom.xml file, see Maven documentation

If using properties like the DL4J examples, change:From version:

  1. <dl4j.version>1.0.0-beta2</dl4j.version>
  2. <nd4j.version>1.0.0-beta2</nd4j.version>

To version:

  1. <dl4j.version>1.0.0-SNAPSHOT</dl4j.version>
  2. <nd4j.version>1.0.0-SNAPSHOT</nd4j.version>

For Spark dependencies, change as follows:

  1. <dl4j.spark.version>1.0.0-beta2_spark_2</dl4j.spark.version>

to

  1. <dl4j.spark.version>1.0.0_spark_2-SNAPSHOT</dl4j.spark.version>

Sample pom.xml using Snapshots

A sample pom.xml is provided here: sample pom.xml using snapshotsThis has been taken from the DL4J standalone sample project and modified using step 1 and 2 above. The original (using the last release) can be found here

Limitations

Both -platform (all operating systems) and single OS (non-platform) snapshot dependencies are released.Due to the multi-platform build nature of snapshots, it is possible (though rare) for the -platform artifacts to temporarily get out of sync, which can cause build issues.

If you are building and deploying on just one platform, it is safter use the non-platform artifacts, such as:

  1. <dependency>
  2. <groupId>org.nd4j</groupId>
  3. <artifactId>nd4j-native</artifactId>
  4. <version>${nd4j.version}</version>
  5. </dependency>

Useful Maven Commands for Snapshots

Two commands that might be useful when using snapshot dependencies in Maven is as follows:

  • -U - for example, in mvn package -U. This -U option forces Maven to check (and if necessary, download) of new snapshot releases. This can be useful if you need the be sure you have the absolute latest snapshot release.
  • -nsu - for example, in mvn package -nsu. This -nsu option stops Maven from checking for snapshot releases. Note however your build will only succeed with this option if you have some snapshot dependencies already downloaded into your local Maven cache (.m2 directory)An alternative approach to (1) is to set <updatePolicy>always</updatePolicy> in the <repositories> section found earlier in this page.An alternative approach to (2) is to set <updatePolicy>never</updatePolicy> in the <repositories> section found earlier in this page.

Note to Gradle users

Snapshots will not work with Gradle. You must use Maven to download the files. After that, you may try using your local Maven repository with mavenLocal().

A bare minimum file like this:

  1. version '1.0-SNAPSHOT'
  2. apply plugin: 'java'
  3. sourceCompatibility = 1.8
  4. repositories {
  5. maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
  6. mavenCentral()
  7. }
  8. dependencies {
  9. compile group: 'org.deeplearning4j', name: 'deeplearning4j-core', version: '1.0.0-SNAPSHOT'
  10. compile group: 'org.deeplearning4j', name: 'deeplearning4j-modelimport', version: '1.0.0-SNAPSHOT'
  11. compile "org.nd4j:nd4j-native:1.0.0-SNAPSHOT"
  12. // Use windows-x86_64 or linux-x86_64 if you are not on macos
  13. compile "org.nd4j:nd4j-native:1.0.0-SNAPSHOT:macosx-x86_64"
  14. testCompile group: 'junit', name: 'junit', version: '4.12'
  15. }

should work in theory, but it does not. This is due to a bug in Gradle. Gradle with snapshots and Maven classifiers appears to be a problem.

Of note when using the nd4j-native backend on Gradle (and SBT - but not Maven), you need to add openblas as a dependency. We do this for you in the -platform pom. Reference the -platform pom here to double check your dependencies. Note that these are version properties. See the <properties> section of the pom for current versions of the openblas and javacpp presets required to run nd4j-native.