Skip to content

Commit 1d415a6

Browse files
committed
Update version
1 parent 9078f48 commit 1d415a6

File tree

18 files changed

+99
-20
lines changed

18 files changed

+99
-20
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
The **Eclipse Deeplearning4J** (DL4J) ecosystem is a set of projects intended to support all the needs of a JVM based deep learning application. This means starting with the raw data, loading and preprocessing it from wherever and whatever format it is in to building and tuning a wide variety of simple and complex deep learning networks.
2020

2121
The DL4J stack comprises of:
22-
- **DL4J**: High level API to build MultiLayerNetworks and ComputationGraphs with a variety of layers, including custom ones. Supports importing Keras models from h5, including tf.keras models (as of 1.0.0-M1) and also supports distributed training on Apache Spark
22+
- **DL4J**: High level API to build MultiLayerNetworks and ComputationGraphs with a variety of layers, including custom ones. Supports importing Keras models from h5, including tf.keras models (as of 1.0.0-M1.1) and also supports distributed training on Apache Spark
2323
- **ND4J**: General purpose linear algebra library with over 500 mathematical, linear algebra and deep learning operations. ND4J is based on the highly-optimized C++ codebase LibND4J that provides CPU (AVX2/512) and GPU (CUDA) support and acceleration by libraries such as OpenBLAS, OneDNN (MKL-DNN), cuDNN, cuBLAS, etc
2424
- **SameDiff** : Part of the ND4J library, SameDiff is our automatic differentiation / deep learning framework. SameDiff uses a graph-based (define then run) approach, similar to TensorFlow graph mode. Eager graph (TensorFlow 2.x eager/PyTorch) graph execution is planned. SameDiff supports importing TensorFlow frozen model format .pb (protobuf) models. Import for ONNX, TensorFlow SavedModel and Keras models are planned. Deeplearning4j also has full SameDiff support for easily writing custom layers and loss functions.
2525
- **DataVec**: ETL for machine learning data in a wide variety of formats and files (HDFS, Spark, Images, Video, Audio, CSV, Excel etc)

android-examples/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ android {
2727
}
2828

2929
dependencies {
30-
def dl4jVersion = '1.0.0-M1'
30+
def dl4jVersion = '1.0.0-M1.1'
3131
def openblasVersion = '0.3.10-1.5.5'
3232
def opencvVersion = '4.5.1-1.5.5'
3333
def leptonicaVersion = '1.80.0-1.5.5'

data-pipeline-examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323

2424
<groupId>org.deeplearning4j</groupId>
2525
<artifactId>data-pipeline-examples</artifactId>
26-
<version>1.0.0-M1</version>
26+
<version>1.0.0-M1.1</version>
2727
<name>Building a data pipeline prior to modeling</name>
2828
<description>Loading raw data and processing it before training</description>
2929

3030
<properties>
31-
<dl4j-master.version>1.0.0-M1</dl4j-master.version>
31+
<dl4j-master.version>1.0.0-M1.1</dl4j-master.version>
3232
<!-- Change the nd4j.backend property to nd4j-cuda-X-platform to use CUDA GPUs -->
3333
<!-- <nd4j.backend>nd4j-cuda-10.2-platform</nd4j.backend> -->
3434
<nd4j.backend>nd4j-native</nd4j.backend>

dl4j-distributed-training-examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323

2424
<groupId>org.deeplearning4j</groupId>
2525
<artifactId>dl4j-distributed-training-examples</artifactId>
26-
<version>1.0.0-M1</version>
26+
<version>1.0.0-M1.1</version>
2727
<name>Introduction to Distributed Training with DL4J</name>
2828
<description>A set of examples introducing distributed training with the DL4J framework</description>
2929

3030
<properties>
31-
<dl4j-master.version>1.0.0-M1</dl4j-master.version>
31+
<dl4j-master.version>1.0.0-M1.1</dl4j-master.version>
3232
<!-- Change the nd4j.backend property to nd4j-cuda-X-platform to use CUDA GPUs -->
3333
<!-- <nd4j.backend>nd4j-cuda-10.2-platform</nd4j.backend> -->
3434
<nd4j.backend>nd4j-native</nd4j.backend>

dl4j-distributed-training-examples/scripts/patentExamplePreproc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ MINIBATCH=32 #Minibatch size for preprocessed
3232

3333
#Other variables. Don't modify these
3434
SCRIPTDIR=$(dirname "$0")
35-
JARFILE=${SCRIPTDIR}/../target/dl4j-spark-1.0.0-M1-bin.jar
35+
JARFILE=${SCRIPTDIR}/../target/dl4j-spark-1.0.0-M1.1-bin.jar
3636
AZURE_ACCT=fs.azure.account.key.${AZURE_STORAGE_ACCT}.blob.core.windows.net
3737

3838

dl4j-distributed-training-examples/scripts/patentExampleTrain.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ AERON_BUFFER=33554432
4040

4141
#Other variables. Don't modify these
4242
SCRIPTDIR=$(dirname "$0")
43-
JARFILE=${SCRIPTDIR}/../target/dl4j-spark-1.0.0-M1-bin.jar
43+
JARFILE=${SCRIPTDIR}/../target/dl4j-spark-1.0.0-M1.1-bin.jar
4444
AZURE_ACCT=fs.azure.account.key.${AZURE_STORAGE_ACCT}.blob.core.windows.net
4545

4646

dl4j-distributed-training-examples/scripts/tinyImagenetTrain.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ EXECUTOR_MEMORY=12G
3232
MASTER_PORT=7077 # Port for the spark master. Default is 7077
3333
MINIBATCH=32 # Minibatch size for preprocessed datasets
3434
SCRIPTDIR=$(dirname "$0")
35-
JARFILE=${SCRIPTDIR}/../target/dl4j-spark-1.0.0-M1-bin.jar
35+
JARFILE=${SCRIPTDIR}/../target/dl4j-spark-1.0.0-M1.1-bin.jar
3636

3737
#Memory
3838
OFFHEAP_MEM_JAVACPP=20G # Maximum amount of off-heap memory

dl4j-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<description>A set of examples introducing the DL4J framework</description>
2929

3030
<properties>
31-
<dl4j-master.version>1.0.0-M1</dl4j-master.version>
31+
<dl4j-master.version>1.0.0-M1.1</dl4j-master.version>
3232
<!-- Change the nd4j.backend property to nd4j-cuda-X-platform to use CUDA GPUs -->
3333
<!-- <nd4j.backend>nd4j-cuda-10.2-platform</nd4j.backend> -->
3434
<nd4j.backend>nd4j-cuda-11.2</nd4j.backend>

mvn-project-template/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
<!-- Group-ID, artifact ID and version of the project. You can modify these as you want -->
2525
<groupId>org.deeplearning4j</groupId>
2626
<artifactId>deeplearning4j-example-sample</artifactId>
27-
<version>1.0.0-M1</version>
27+
<version>1.0.0-M1.1</version>
2828

2929
<!-- Properties Section. Change ND4J versions here, if required -->
3030
<properties>
31-
<dl4j-master.version>1.0.0-M1</dl4j-master.version>
31+
<dl4j-master.version>1.0.0-M1.1</dl4j-master.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>

nd4j-ndarray-examples/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@
2828
<description>Working with NDArrays</description>
2929

3030
<repositories>
31+
<repository>
32+
<id>orgdeeplearning4j-1177</id>
33+
<url>https://oss.sonatype.org/content/repositories/orgdeeplearning4j-1177</url>
34+
</repository>
3135
<repository>
3236
<id>sonatype-nexus-snapshots</id>
3337
<name>Sonatype Nexus Snapshots</name>
@@ -44,7 +48,7 @@
4448

4549

4650
<properties>
47-
<dl4j-master.version>1.0.0-M1</dl4j-master.version>
51+
<dl4j-master.version>1.0.0-M1.1.1</dl4j-master.version>
4852
<!-- Change the nd4j.backend property to nd4j-cuda-X-platform to use CUDA GPUs -->
4953
<!-- <nd4j.backend>nd4j-cuda-10.2-platform</nd4j.backend> -->
5054
<nd4j.backend>nd4j-native</nd4j.backend>

0 commit comments

Comments
 (0)