Skip to content

Commit

Permalink
Remove -SNAPSHOT for release v0.4.0
Browse files Browse the repository at this point in the history
Change-Id: Ib146bd01acb1b8f46b9f1fe9bb7c3376e741f6be
  • Loading branch information
Qing committed Mar 28, 2020
1 parent 561c1d0 commit b8e8b7d
Show file tree
Hide file tree
Showing 10 changed files with 60 additions and 60 deletions.
10 changes: 5 additions & 5 deletions examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ dependencies {
implementation "commons-cli:commons-cli:1.4"
implementation "org.apache.logging.log4j:log4j-slf4j-impl:2.12.1"
implementation "com.google.code.gson:gson:2.8.5"
implementation "ai.djl:api:0.4.0-SNAPSHOT"
implementation "ai.djl:basicdataset:0.4.0-SNAPSHOT"
implementation "ai.djl:model-zoo:0.4.0-SNAPSHOT"
implementation "ai.djl.mxnet:mxnet-model-zoo:0.4.0-SNAPSHOT"
implementation "ai.djl:api:0.4.0"
implementation "ai.djl:basicdataset:0.4.0"
implementation "ai.djl:model-zoo:0.4.0"
implementation "ai.djl.mxnet:mxnet-model-zoo:0.4.0"

// See https:/awslabs/djl/blob/master/mxnet/mxnet-engine/README.md for more MXNet library selection options
runtimeOnly "ai.djl.mxnet:mxnet-native-auto:1.6.0-SNAPSHOT"
runtimeOnly "ai.djl.mxnet:mxnet-native-auto:1.6.0"

testImplementation 'org.testng:testng:6.14.3'
}
Expand Down
14 changes: 7 additions & 7 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>ai.djl</groupId>
<artifactId>examples</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>0.4.0</version>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
Expand Down Expand Up @@ -38,35 +38,35 @@
<dependency>
<groupId>ai.djl</groupId>
<artifactId>api</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>0.4.0</version>
</dependency>
<dependency>
<groupId>ai.djl</groupId>
<artifactId>basicdataset</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>0.4.0</version>
</dependency>
<dependency>
<groupId>ai.djl</groupId>
<artifactId>model-zoo</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>0.4.0</version>
</dependency>
<dependency>
<groupId>ai.djl.mxnet</groupId>
<artifactId>mxnet-model-zoo</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>0.4.0</version>
</dependency>
<dependency>
<groupId>ai.djl.mxnet</groupId>
<artifactId>mxnet-engine</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>0.4.0</version>
</dependency>
<dependency>
<!--
See https:/awslabs/djl/blob/master/mxnet/mxnet-engine/README.md for more MXNet library selection options
-->
<groupId>ai.djl.mxnet</groupId>
<artifactId>mxnet-native-auto</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.6.0</version>
<scope>runtime</scope>
</dependency>

Expand Down
12 changes: 6 additions & 6 deletions jupyter/BERTQA.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@
"metadata": {},
"outputs": [],
"source": [
"%mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"\n",
"%maven ai.djl:api:0.4.0-SNAPSHOT\n",
"%maven ai.djl.mxnet:mxnet-engine:0.4.0-SNAPSHOT\n",
"%maven ai.djl:repository:0.4.0-SNAPSHOT\n",
"%maven ai.djl.mxnet:mxnet-model-zoo:0.4.0-SNAPSHOT\n",
"%maven ai.djl:api:0.4.0\n",
"%maven ai.djl.mxnet:mxnet-engine:0.4.0\n",
"%maven ai.djl:repository:0.4.0\n",
"%maven ai.djl.mxnet:mxnet-model-zoo:0.4.0\n",
"%maven org.slf4j:slf4j-api:1.7.26\n",
"%maven org.slf4j:slf4j-simple:1.7.26\n",
"%maven net.java.dev.jna:jna:5.3.0\n",
" \n",
"// See https:/awslabs/djl/blob/master/mxnet/mxnet-engine/README.md\n",
"// for more MXNet library selection options\n",
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0-SNAPSHOT"
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0"
]
},
{
Expand Down
14 changes: 7 additions & 7 deletions jupyter/load_mxnet_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@
"metadata": {},
"outputs": [],
"source": [
"%mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"\n",
"%maven ai.djl:api:0.4.0-SNAPSHOT\n",
"%maven ai.djl:repository:0.4.0-SNAPSHOT\n",
"%maven ai.djl:model-zoo:0.4.0-SNAPSHOT\n",
"%maven ai.djl.mxnet:mxnet-engine:0.4.0-SNAPSHOT\n",
"%maven ai.djl.mxnet:mxnet-model-zoo:0.4.0-SNAPSHOT\n",
"%maven ai.djl:api:0.4.0\n",
"%maven ai.djl:repository:0.4.0\n",
"%maven ai.djl:model-zoo:0.4.0\n",
"%maven ai.djl.mxnet:mxnet-engine:0.4.0\n",
"%maven ai.djl.mxnet:mxnet-model-zoo:0.4.0\n",
"%maven org.slf4j:slf4j-api:1.7.26\n",
"%maven org.slf4j:slf4j-simple:1.7.26\n",
"%maven net.java.dev.jna:jna:5.3.0\n",
" \n",
"// See https:/awslabs/djl/blob/master/mxnet/mxnet-engine/README.md\n",
"// for more MXNet library selection options\n",
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0-SNAPSHOT"
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0"
]
},
{
Expand Down
10 changes: 5 additions & 5 deletions jupyter/load_pytorch_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@
"metadata": {},
"outputs": [],
"source": [
"%mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"\n",
"%maven ai.djl:api:0.4.0-SNAPSHOT\n",
"%maven ai.djl:repository:0.4.0-SNAPSHOT\n",
"%maven ai.djl.pytorch:pytorch-engine:0.4.0-SNAPSHOT\n",
"%maven ai.djl:api:0.4.0\n",
"%maven ai.djl:repository:0.4.0\n",
"%maven ai.djl.pytorch:pytorch-engine:0.4.0\n",
"%maven org.slf4j:slf4j-api:1.7.26\n",
"%maven org.slf4j:slf4j-simple:1.7.26\n",
"%maven net.java.dev.jna:jna:5.3.0\n",
" \n",
"// See https:/awslabs/djl/blob/master/pytorch/pytorch-engine/README.md\n",
"// for more PyTorch library selection options\n",
"%maven ai.djl.pytorch:pytorch-native-auto:1.4.0-SNAPSHOT"
"%maven ai.djl.pytorch:pytorch-native-auto:1.4.0"
]
},
{
Expand Down
12 changes: 6 additions & 6 deletions jupyter/object_detection_with_model_zoo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@
"metadata": {},
"outputs": [],
"source": [
"%mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"\n",
"%maven ai.djl:api:0.4.0-SNAPSHOT\n",
"%maven ai.djl:repository:0.4.0-SNAPSHOT\n",
"%maven ai.djl.mxnet:mxnet-engine:0.4.0-SNAPSHOT\n",
"%maven ai.djl.mxnet:mxnet-model-zoo:0.4.0-SNAPSHOT\n",
"%maven ai.djl:api:0.4.0\n",
"%maven ai.djl:repository:0.4.0\n",
"%maven ai.djl.mxnet:mxnet-engine:0.4.0\n",
"%maven ai.djl.mxnet:mxnet-model-zoo:0.4.0\n",
"%maven org.slf4j:slf4j-api:1.7.26\n",
"%maven org.slf4j:slf4j-simple:1.7.26\n",
"%maven net.java.dev.jna:jna:5.3.0\n",
" \n",
"// See https:/awslabs/djl/blob/master/mxnet/mxnet-engine/README.md\n",
"// for more MXNet library selection options\n",
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0-SNAPSHOT"
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0"
]
},
{
Expand Down
14 changes: 7 additions & 7 deletions jupyter/transfer_learning_on_cifar10.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,20 @@
"metadata": {},
"outputs": [],
"source": [
"%mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"\n",
"%maven ai.djl:api:0.4.0-SNAPSHOT\n",
"%maven ai.djl:basicdataset:0.4.0-SNAPSHOT\n",
"%maven ai.djl:repository:0.4.0-SNAPSHOT\n",
"%maven ai.djl.mxnet:mxnet-engine:0.4.0-SNAPSHOT\n",
"%maven ai.djl.mxnet:mxnet-model-zoo:0.4.0-SNAPSHOT\n",
"%maven ai.djl:api:0.4.0\n",
"%maven ai.djl:basicdataset:0.4.0\n",
"%maven ai.djl:repository:0.4.0\n",
"%maven ai.djl.mxnet:mxnet-engine:0.4.0\n",
"%maven ai.djl.mxnet:mxnet-model-zoo:0.4.0\n",
"%maven org.slf4j:slf4j-api:1.7.26\n",
"%maven org.slf4j:slf4j-simple:1.7.26\n",
"%maven net.java.dev.jna:jna:5.3.0\n",
" \n",
"// See https:/awslabs/djl/blob/master/mxnet/mxnet-engine/README.md\n",
"// for more MXNet library selection options\n",
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0-SNAPSHOT"
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0"
]
},
{
Expand Down
6 changes: 3 additions & 3 deletions jupyter/tutorial/create_your_first_network.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@
"outputs": [],
"source": [
"// Add the snapshot repository to get the DJL snapshot artifacts\n",
"%mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"\n",
"// Add the maven dependencies\n",
"%maven ai.djl:api:0.4.0-SNAPSHOT\n",
"%maven ai.djl:api:0.4.0\n",
"%maven org.slf4j:slf4j-api:1.7.26\n",
"%maven org.slf4j:slf4j-simple:1.7.26\n",
" \n",
"// See https:/awslabs/djl/blob/master/mxnet/mxnet-engine/README.md\n",
"// for more MXNet library selection options\n",
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0-SNAPSHOT"
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0"
]
},
{
Expand Down
14 changes: 7 additions & 7 deletions jupyter/tutorial/image_classification_with_your_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@
"outputs": [],
"source": [
"// Add the snapshot repository to get the DJL snapshot artifacts\n",
"%mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"\n",
"// Add the maven dependencies\n",
"%maven ai.djl:api:0.4.0-SNAPSHOT\n",
"%maven ai.djl:repository:0.4.0-SNAPSHOT\n",
"%maven ai.djl:model-zoo:0.4.0-SNAPSHOT\n",
"%maven ai.djl.mxnet:mxnet-engine:0.4.0-SNAPSHOT\n",
"%maven ai.djl.mxnet:mxnet-model-zoo:0.4.0-SNAPSHOT\n",
"%maven ai.djl:api:0.4.0\n",
"%maven ai.djl:repository:0.4.0\n",
"%maven ai.djl:model-zoo:0.4.0\n",
"%maven ai.djl.mxnet:mxnet-engine:0.4.0\n",
"%maven ai.djl.mxnet:mxnet-model-zoo:0.4.0\n",
"%maven org.slf4j:slf4j-api:1.7.26\n",
"%maven org.slf4j:slf4j-simple:1.7.26\n",
"%maven net.java.dev.jna:jna:5.3.0\n",
" \n",
"// See https:/awslabs/djl/blob/master/mxnet/mxnet-engine/README.md\n",
"// for more MXNet library selection options\n",
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0-SNAPSHOT"
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0"
]
},
{
Expand Down
14 changes: 7 additions & 7 deletions jupyter/tutorial/train_your_first_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@
"outputs": [],
"source": [
"// Add the snapshot repository to get the DJL snapshot artifacts\n",
"%mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"\n",
"// Add the maven dependencies\n",
"%maven ai.djl:api:0.4.0-SNAPSHOT\n",
"%maven ai.djl:basicdataset:0.4.0-SNAPSHOT\n",
"%maven ai.djl:model-zoo:0.4.0-SNAPSHOT\n",
"%maven ai.djl:repository:0.4.0-SNAPSHOT\n",
"%maven ai.djl.mxnet:mxnet-engine:0.4.0-SNAPSHOT\n",
"%maven ai.djl:api:0.4.0\n",
"%maven ai.djl:basicdataset:0.4.0\n",
"%maven ai.djl:model-zoo:0.4.0\n",
"%maven ai.djl:repository:0.4.0\n",
"%maven ai.djl.mxnet:mxnet-engine:0.4.0\n",
"%maven org.slf4j:slf4j-api:1.7.26\n",
"%maven org.slf4j:slf4j-simple:1.7.26\n",
"%maven net.java.dev.jna:jna:5.3.0\n",
" \n",
"// See https:/awslabs/djl/blob/master/mxnet/mxnet-engine/README.md\n",
"// for more MXNet library selection options\n",
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0-SNAPSHOT"
"%maven ai.djl.mxnet:mxnet-native-auto:1.6.0"
]
},
{
Expand Down

0 comments on commit b8e8b7d

Please sign in to comment.