Skip to content

Commit 0bb1a92

Browse files
authored
Increase Final Version for main branch (deepjavalibrary#1644)
1 parent 15d067c commit 0bb1a92

File tree

52 files changed

+144
-144
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+144
-144
lines changed

android/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ In gradle, you can include the snapshot repository and add the 4 modules in your
1515

1616
```
1717
dependencies {
18-
implementation "ai.djl:api:0.16.0-SNAPSHOT"
19-
implementation "ai.djl.android:core:0.16.0-SNAPSHOT"
20-
androidRuntimeOnly "ai.djl.pytorch:pytorch-engine:0.16.0-SNAPSHOT"
21-
androidRuntimeOnly "ai.djl.android:pytorch-native:0.16.0-SNAPSHOT"
18+
implementation "ai.djl:api:0.17.0-SNAPSHOT"
19+
implementation "ai.djl.android:core:0.17.0-SNAPSHOT"
20+
androidRuntimeOnly "ai.djl.pytorch:pytorch-engine:0.17.0-SNAPSHOT"
21+
androidRuntimeOnly "ai.djl.android:pytorch-native:0.17.0-SNAPSHOT"
2222
}
2323
```

api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You can pull the DJL API from the central Maven repository by including the foll
3535
<dependency>
3636
<groupId>ai.djl</groupId>
3737
<artifactId>api</artifactId>
38-
<version>0.16.0</version>
38+
<version>0.17.0</version>
3939
</dependency>
4040
```
4141

basicdataset/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ You can pull the module from the central Maven repository by including the follo
3939
<dependency>
4040
<groupId>ai.djl</groupId>
4141
<artifactId>basicdataset</artifactId>
42-
<version>0.16.0</version>
42+
<version>0.17.0</version>
4343
</dependency>
4444
```
4545

bom/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ will need to mention the type as pom and the scope as import) as the following:
2222
<dependency>
2323
<groupId>ai.djl</groupId>
2424
<artifactId>bom</artifactId>
25-
<version>0.16.0</version>
25+
<version>0.17.0</version>
2626
<type>pom</type>
2727
<scope>import</scope>
2828
</dependency>
@@ -38,7 +38,7 @@ will need to mention the type as pom and the scope as import) as the following:
3838
<dependency>
3939
<groupId>ai.djl</groupId>
4040
<artifactId>bom</artifactId>
41-
<version>0.16.0</version>
41+
<version>0.17.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>
@@ -70,7 +70,7 @@ will need to mention the type as pom and the scope as import) as the following:
7070
- First you need add BOM into your build.gradle file as the following:
7171

7272
```
73-
implementation platform("ai.djl:bom:0.16.0")
73+
implementation platform("ai.djl:bom:0.17.0")
7474
```
7575

7676
- Then you import the desired DJL modules into to you pom.xml file (no version is needed):

djl-zero/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ You can pull the module from the central Maven repository by including the follo
3434
<dependency>
3535
<groupId>ai.djl</groupId>
3636
<artifactId>djl-zero</artifactId>
37-
<version>0.16.0</version>
37+
<version>0.17.0</version>
3838
</dependency>
3939
```

docs/development/development_guideline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ You can create your own NDArray renderer as follows:
159159
Please make sure to:
160160

161161
- Check the "On-demand" option, which causes IntelliJ to only render the NDArray when you click on the variable.
162-
- Change the "Use following expression" field to something like [toDebugString(100, 10, 10, 20)](https://javadoc.io/static/ai.djl/api/0.16.0/ai/djl/ndarray/NDArray.html#toDebugString-int-int-int-int-)
162+
- Change the "Use following expression" field to something like [toDebugString(100, 10, 10, 20)](https://javadoc.io/static/ai.djl/api/0.17.0/ai/djl/ndarray/NDArray.html#toDebugString-int-int-int-int-)
163163
if you want to adjust the range of NDArray's debug output.
164164

165165
## Common Problems

docs/development/how_to_use_dataset.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ api group: 'org.apache.commons', name: 'commons-csv', version: '1.7'
108108
In order to extend the dataset, the following dependencies are required:
109109

110110
```
111-
api "ai.djl:api:0.16.0"
112-
api "ai.djl:basicdataset:0.16.0"
111+
api "ai.djl:api:0.17.0"
112+
api "ai.djl:basicdataset:0.17.0"
113113
```
114114

115115
There are four parts we need to implement for CSVDataset.

docs/development/memory_management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The intermediate NDArrays involving in training case are usually
3737

3838
In general, all the parameters in the model should be associated with Model level NDManager.
3939
All of the input and output NDArrays should be associated with one NDManager which is one level down to the model NDManager.
40-
Please check if you call [batch.close()](https://javadoc.io/static/ai.djl/api/0.16.0/ai/djl/training/dataset/Batch.html#close--)
40+
Please check if you call [batch.close()](https://javadoc.io/static/ai.djl/api/0.17.0/ai/djl/training/dataset/Batch.html#close--)
4141
to release one batch of the dataset at the end of each batch.
4242
If you still see the memory grows as the training process goes, it is most likely that intermediate NDArrays are attached to the Model(Block) parameter level.
4343
As a result, those NDArrays would not closed until the training is finished.

docs/development/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ For example, adding MXNet engine dependencies:
2828
Gradle:
2929

3030
```
31-
implementation "ai.djl.mxnet:mxnet-engine:0.16.0"
31+
implementation "ai.djl.mxnet:mxnet-engine:0.17.0"
3232
// See https://github.com/deepjavalibrary/djl/blob/master/engines/mxnet/mxnet-engine/README.md for more MXNet library selection options
3333
runtimeOnly "ai.djl.mxnet:mxnet-native-auto:1.8.0"
3434
```

docs/hybrid_engine.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ to run in a hybrid mode:
2222
To use it along with Apache MXNet for additional API support, add the following two dependencies:
2323

2424
```
25-
runtimeOnly "ai.djl.mxnet:mxnet-engine:0.16.0"
25+
runtimeOnly "ai.djl.mxnet:mxnet-engine:0.17.0"
2626
```
2727

2828
You can also use PyTorch or TensorFlow Engine as the supplemental engine by adding their corresponding dependencies.
2929

3030
```
31-
runtimeOnly "ai.djl.pytorch:pytorch-engine:0.16.0"
31+
runtimeOnly "ai.djl.pytorch:pytorch-engine:0.17.0"
3232
```
3333

3434
```
35-
runtimeOnly "ai.djl.tensorflow:tensorflow-engine:0.16.0"
35+
runtimeOnly "ai.djl.tensorflow:tensorflow-engine:0.17.0"
3636
```
3737

3838
## How Hybrid works

0 commit comments

Comments
 (0)