Skip to content

Commit 1dee77c

Browse files
committed
1.0.0-beta7 (staging repo)
Signed-off-by: Alex Black <[email protected]>
1 parent 35c0765 commit 1dee77c

File tree

21 files changed

+76
-83
lines changed

21 files changed

+76
-83
lines changed

android/DL4JImageRecognitionDemo/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,18 @@ android {
6464
implementation 'com.android.support:appcompat-v7:27.1.0'
6565
implementation 'com.android.support:design:27.1.0'
6666

67-
implementation (group: 'org.deeplearning4j', name: 'deeplearning4j-core', version: '1.0.0-beta6') {
67+
implementation (group: 'org.deeplearning4j', name: 'deeplearning4j-core', version: '1.0.0-beta7') {
6868
exclude group: 'org.bytedeco', module: 'opencv-platform'
6969
exclude group: 'org.bytedeco', module: 'leptonica-platform'
7070
exclude group: 'org.bytedeco', module: 'hdf5-platform'
7171
exclude group: 'org.nd4j', module: 'nd4j-base64'
7272
}
7373

74-
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta6'
75-
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta6', classifier: "android-arm"
76-
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta6', classifier: "android-arm64"
77-
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta6', classifier: "android-x86"
78-
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta6', classifier: "android-x86_64"
74+
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta7'
75+
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta7', classifier: "android-arm"
76+
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta7', classifier: "android-arm64"
77+
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta7', classifier: "android-x86"
78+
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta7', classifier: "android-x86_64"
7979
implementation group: 'org.bytedeco', name: 'openblas', version: '0.3.5-1.5'
8080
implementation group: 'org.bytedeco', name: 'openblas', version: '0.3.5-1.5', classifier: "android-arm"
8181
implementation group: 'org.bytedeco', name: 'openblas', version: '0.3.5-1.5', classifier: "android-arm64"

android/DL4JIrisClassifierDemo/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,17 @@ android {
6666
implementation 'com.android.support:design:27.1.0'
6767

6868

69-
implementation (group: 'org.deeplearning4j', name: 'deeplearning4j-core', version: '1.0.0-beta6') {
69+
implementation (group: 'org.deeplearning4j', name: 'deeplearning4j-core', version: '1.0.0-beta7') {
7070
exclude group: 'org.bytedeco', module: 'opencv-platform'
7171
exclude group: 'org.bytedeco', module: 'leptonica-platform'
7272
exclude group: 'org.bytedeco', module: 'hdf5-platform'
7373
exclude group: 'org.nd4j', module: 'nd4j-base64'
7474
}
75-
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta6'
76-
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta6', classifier: "android-arm"
77-
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta6', classifier: "android-arm64"
78-
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta6', classifier: "android-x86"
79-
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta6', classifier: "android-x86_64"
75+
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta7'
76+
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta7', classifier: "android-arm"
77+
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta7', classifier: "android-arm64"
78+
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta7', classifier: "android-x86"
79+
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta7', classifier: "android-x86_64"
8080
implementation group: 'org.bytedeco', name: 'openblas', version: '0.3.5-1.5'
8181
implementation group: 'org.bytedeco', name: 'openblas', version: '0.3.5-1.5', classifier: "android-arm"
8282
implementation group: 'org.bytedeco', name: 'openblas', version: '0.3.5-1.5', classifier: "android-arm64"

android/DL4JModelTester/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,16 @@ dependencies {
6262
androidTestImplementation 'androidx.test:runner:1.2.0-alpha05'
6363
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0-alpha05'
6464

65-
implementation(group: 'org.deeplearning4j', name: 'deeplearning4j-core', version: '1.0.0-beta6') {
65+
implementation(group: 'org.deeplearning4j', name: 'deeplearning4j-core', version: '1.0.0-beta7') {
6666
exclude group: 'org.bytedeco', module: 'opencv-platform'
6767
exclude group: 'org.bytedeco', module: 'leptonica-platform'
6868
exclude group: 'org.bytedeco', module: 'hdf5-platform'
6969
exclude group: 'org.nd4j', module: 'nd4j-base64'
7070
}
7171

72-
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta6'
73-
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta6', classifier: "android-arm"
74-
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta6', classifier: "android-arm64"
72+
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta7'
73+
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta7', classifier: "android-arm"
74+
implementation group: 'org.nd4j', name: 'nd4j-native', version: '1.0.0-beta7', classifier: "android-arm64"
7575
implementation group: 'org.bytedeco', name: 'openblas', version: '0.3.5-1.5'
7676
implementation group: 'org.bytedeco', name: 'openblas', version: '0.3.5-1.5', classifier: "android-arm"
7777
implementation group: 'org.bytedeco', name: 'openblas', version: '0.3.5-1.5', classifier: "android-arm64"

datavec-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.deeplearning4j</groupId>
2626
<artifactId>deeplearning4j-examples-parent</artifactId>
27-
<version>1.0.0-beta6</version>
27+
<version>1.0.0-beta7</version>
2828
</parent>
2929

3030

dl4j-cuda-specific-examples/pom.xml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
<parent>
2525
<groupId>org.deeplearning4j</groupId>
2626
<artifactId>deeplearning4j-examples-parent</artifactId>
27-
<version>1.0.0-beta6</version>
27+
<version>1.0.0-beta7</version>
2828
</parent>
2929

3030
<name>DeepLearning4j CUDA special examples</name>
3131
<properties>
32-
<nd4j.backend>nd4j-cuda-10.2</nd4j.backend>
32+
<nd4j.backend>nd4j-cuda-10.2-platform</nd4j.backend>
3333
</properties>
3434

3535
<repositories>
@@ -58,22 +58,17 @@
5858
<dependencies>
5959
<dependency>
6060
<groupId>org.nd4j</groupId>
61-
<artifactId>nd4j-cuda-9.2</artifactId>
61+
<artifactId>nd4j-cuda-10.0-platform</artifactId>
6262
<version>${nd4j.version}</version>
6363
</dependency>
6464
<dependency>
6565
<groupId>org.nd4j</groupId>
66-
<artifactId>nd4j-cuda-10.0</artifactId>
66+
<artifactId>nd4j-cuda-10.1-platform</artifactId>
6767
<version>${nd4j.version}</version>
6868
</dependency>
6969
<dependency>
7070
<groupId>org.nd4j</groupId>
71-
<artifactId>nd4j-cuda-10.1</artifactId>
72-
<version>${nd4j.version}</version>
73-
</dependency>
74-
<dependency>
75-
<groupId>org.nd4j</groupId>
76-
<artifactId>nd4j-cuda-10.2</artifactId>
71+
<artifactId>nd4j-cuda-10.2-platform</artifactId>
7772
<version>${nd4j.version}</version>
7873
</dependency>
7974
</dependencies>

dl4j-examples/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ mainClassName = 'org.deeplearning4j.examples.feedforward.mnist.MLPMnistSingleLay
2626

2727
buildscript {
2828
ext {
29-
dl4j_version = "1.0.0-beta6"
29+
dl4j_version = "1.0.0-beta7"
3030
kotlin_version = "1.3.30"
3131
}
3232
repositories {

dl4j-examples/pom.xml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.deeplearning4j</groupId>
2626
<artifactId>deeplearning4j-examples-parent</artifactId>
27-
<version>1.0.0-beta6</version>
27+
<version>1.0.0-beta7</version>
2828
</parent>
2929

3030
<name>DeepLearning4j Examples</name>
@@ -54,27 +54,22 @@
5454
<dependencies>
5555
<dependency>
5656
<groupId>org.nd4j</groupId>
57-
<artifactId>nd4j-native</artifactId>
57+
<artifactId>nd4j-native-platform</artifactId>
5858
<version>${nd4j.version}</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.nd4j</groupId>
62-
<artifactId>nd4j-cuda-9.2</artifactId>
62+
<artifactId>nd4j-cuda-10.0-platform</artifactId>
6363
<version>${nd4j.version}</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>org.nd4j</groupId>
67-
<artifactId>nd4j-cuda-10.0</artifactId>
67+
<artifactId>nd4j-cuda-10.1-platform</artifactId>
6868
<version>${nd4j.version}</version>
6969
</dependency>
7070
<dependency>
7171
<groupId>org.nd4j</groupId>
72-
<artifactId>nd4j-cuda-10.1</artifactId>
73-
<version>${nd4j.version}</version>
74-
</dependency>
75-
<dependency>
76-
<groupId>org.nd4j</groupId>
77-
<artifactId>nd4j-cuda-10.2</artifactId>
72+
<artifactId>nd4j-cuda-10.2-platform</artifactId>
7873
<version>${nd4j.version}</version>
7974
</dependency>
8075
</dependencies>

dl4j-examples_javafx/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
<!-- Group-ID, artifact ID and version of the project. You can modify these as you want -->
2424
<groupId>org.deeplearning4j</groupId>
2525
<artifactId>deeplearning4j-examples</artifactId>
26-
<version>1.0.0-beta6</version>
26+
<version>1.0.0-beta7</version>
2727

2828
<!-- Properties Section. Change DL4J and ND4J versions here, if required -->
2929
<properties>
30-
<dl4j.version>1.0.0-beta6</dl4j.version>
31-
<nd4j.version>1.0.0-beta6</nd4j.version>
30+
<dl4j.version>1.0.0-beta7</dl4j.version>
31+
<nd4j.version>1.0.0-beta7</nd4j.version>
3232
<logback.version>1.2.3</logback.version>
3333
<java.version>1.8</java.version>
3434
<maven-shade-plugin.version>2.4.3</maven-shade-plugin.version>
@@ -49,12 +49,12 @@
4949
-->
5050
<dependency>
5151
<groupId>org.nd4j</groupId>
52-
<artifactId>nd4j-native</artifactId>
52+
<artifactId>nd4j-native-platform</artifactId>
5353
<version>${nd4j.version}</version>
5454
</dependency>
5555

5656
<!-- CUDA: to use GPU for training (CUDA) instead of CPU, uncomment this, and remove nd4j-native-platform -->
57-
<!-- Requires CUDA to be installed to use. Change the version (9.2, 10.0, 10.1) to change the CUDA version -->
57+
<!-- Requires CUDA to be installed to use. Change the version (10.0, 10.1, 10.2) to change the CUDA version -->
5858
<!--
5959
<dependency>
6060
<groupId>org.nd4j</groupId>

dl4j-spark-examples/dl4j-spark-cluster/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>dl4j-spark-examples</artifactId>
2323
<groupId>org.deeplearning4j</groupId>
24-
<version>1.0.0-beta6</version>
24+
<version>1.0.0-beta7</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

dl4j-spark-examples/dl4j-spark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>dl4j-spark-examples</artifactId>
2323
<groupId>org.deeplearning4j</groupId>
24-
<version>1.0.0-beta6</version>
24+
<version>1.0.0-beta7</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

0 commit comments

Comments
 (0)