diff --git a/README.md b/README.md index 1fc90a4e6d3..b76d580f94f 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,7 @@ The following pseudocode demonstrates running training: ## Release Notes +* [0.25.0](https://github.com/deepjavalibrary/djl/releases/tag/v0.25.0) ([Code](https://github.com/deepjavalibrary/djl/tree/v0.25.0)) * [0.24.0](https://github.com/deepjavalibrary/djl/releases/tag/v0.24.0) ([Code](https://github.com/deepjavalibrary/djl/tree/v0.24.0)) * [0.23.0](https://github.com/deepjavalibrary/djl/releases/tag/v0.23.0) ([Code](https://github.com/deepjavalibrary/djl/tree/v0.23.0)) * [0.22.1](https://github.com/deepjavalibrary/djl/releases/tag/v0.22.1) ([Code](https://github.com/deepjavalibrary/djl/tree/v0.22.1)) @@ -109,7 +110,7 @@ The following pseudocode demonstrates running training: * [0.2.1](https://github.com/deepjavalibrary/djl/releases/tag/v0.2.1) ([Code](https://github.com/deepjavalibrary/djl/tree/v0.2.1)) * [0.2.0 Initial release](https://github.com/deepjavalibrary/djl/releases/tag/v0.2.0) ([Code](https://github.com/deepjavalibrary/djl/tree/v0.2.0)) -The release of DJL 0.25.0 is planned for November 2023. +The release of DJL 0.26.0 is planned for January 2024. ## Building From Source diff --git a/android/README.md b/android/README.md index 1dbf363b858..6c9b25669b9 100644 --- a/android/README.md +++ b/android/README.md @@ -16,7 +16,7 @@ In gradle, you can add the 5 modules in your dependencies: ```groovy dependencies { - implementation platform("ai.djl:bom:0.24.0") + implementation platform("ai.djl:bom:0.25.0") implementation "ai.djl:api" implementation "ai.djl.android:core" diff --git a/android/gradle.properties b/android/gradle.properties index 68ad6c12151..8ad177db1bf 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -17,5 +17,5 @@ org.gradle.jvmargs=-Xmx1536m android.useAndroidX=true # Automatically convert third-party libraries to use AndroidX android.enableJetifier=true -djl_version=0.23.0 +djl_version=0.25.0 pytorch_version=1.13.1 diff --git a/android/pytorch-native/README.md b/android/pytorch-native/README.md index a4220606ef0..7ed09d5b448 100644 --- a/android/pytorch-native/README.md +++ b/android/pytorch-native/README.md @@ -124,7 +124,7 @@ cd .. ./gradlew compileAndroidJNI -Ppt_version=${PYTORCH_VERSION} ``` -`jnilib/0.24.0/android` folder will be created after build, and shared library will be uploaded to S3 in CI build +`jnilib/0.25.0/android` folder will be created after build, and shared library will be uploaded to S3 in CI build ## Build PyTorch android library (.aar) and publish to Sonatype snapshot repo @@ -138,7 +138,7 @@ cd ../../../android # To avoid download jni from S3, manually copy them mkdir -p pytorch-native/jnilib -cp -r ../engines/pytorch/pytorch-native/jnilib/0.24.0/android/* pytorch-native/jnilib +cp -r ../engines/pytorch/pytorch-native/jnilib/0.25.0/android/* pytorch-native/jnilib ./gradlew :pytorch-native:assemble # publish to local maven repo (~/.m2 folder) diff --git a/api/README.md b/api/README.md index 06859db7786..cf2bbfb55db 100644 --- a/api/README.md +++ b/api/README.md @@ -35,7 +35,7 @@ You can pull the DJL API from the central Maven repository by including the foll ai.djl api - 0.24.0 + 0.25.0 ``` diff --git a/basicdataset/README.md b/basicdataset/README.md index df27c038bb2..11c217b5371 100644 --- a/basicdataset/README.md +++ b/basicdataset/README.md @@ -29,7 +29,7 @@ You can pull the module from the central Maven repository by including the follo ai.djl basicdataset - 0.24.0 + 0.25.0 ``` diff --git a/bom/README.md b/bom/README.md index 7ee24245acb..c8e4e80d204 100644 --- a/bom/README.md +++ b/bom/README.md @@ -22,7 +22,7 @@ will need to mention the type as pom and the scope as import) as the following: ai.djl bom - 0.24.0 + 0.25.0 pom import @@ -38,7 +38,7 @@ will need to mention the type as pom and the scope as import) as the following: ai.djl bom - 0.24.0 + 0.25.0 pom import @@ -65,7 +65,7 @@ will need to mention the type as pom and the scope as import) as the following: - First you need add BOM into your build.gradle file as the following: ``` - implementation platform("ai.djl:bom:0.24.0") + implementation platform("ai.djl:bom:0.25.0") ``` - Then you import the desired DJL modules into to you pom.xml file (no version is needed): diff --git a/djl-zero/README.md b/djl-zero/README.md index b728128f285..019fb155038 100644 --- a/djl-zero/README.md +++ b/djl-zero/README.md @@ -49,6 +49,6 @@ You can pull the module from the central Maven repository by including the follo ai.djl djl-zero - 0.24.0 + 0.25.0 ``` diff --git a/docs/development/example_dataset.md b/docs/development/example_dataset.md index 671cf5e952f..1b0f9b87b41 100644 --- a/docs/development/example_dataset.md +++ b/docs/development/example_dataset.md @@ -24,8 +24,8 @@ api group: 'org.apache.commons', name: 'commons-csv', version: '1.7' In order to extend the dataset, the following dependencies are required: ``` -api "ai.djl:api:0.24.0" -api "ai.djl:basicdataset:0.24.0" +api "ai.djl:api:0.25.0" +api "ai.djl:basicdataset:0.25.0" ``` There are four parts we need to implement for CSVDataset. diff --git a/docs/hybrid_engine.md b/docs/hybrid_engine.md index e8b8827cef3..8a529770cfd 100644 --- a/docs/hybrid_engine.md +++ b/docs/hybrid_engine.md @@ -21,17 +21,17 @@ to run in a hybrid mode: To use it along with Apache MXNet for additional API support, add the following two dependencies: ``` -runtimeOnly "ai.djl.mxnet:mxnet-engine:0.24.0" +runtimeOnly "ai.djl.mxnet:mxnet-engine:0.25.0" ``` You can also use PyTorch or TensorFlow Engine as the supplemental engine by adding their corresponding dependencies. ``` -runtimeOnly "ai.djl.pytorch:pytorch-engine:0.24.0" +runtimeOnly "ai.djl.pytorch:pytorch-engine:0.25.0" ``` ``` -runtimeOnly "ai.djl.tensorflow:tensorflow-engine:0.24.0" +runtimeOnly "ai.djl.tensorflow:tensorflow-engine:0.25.0" ``` ## How Hybrid works diff --git a/docs/load_model.md b/docs/load_model.md index 530cfefa8af..727d02fa1e0 100644 --- a/docs/load_model.md +++ b/docs/load_model.md @@ -181,7 +181,7 @@ Here is a few tips you can use to help you debug model loading issue: See [here](development/configure_logging.md#configure-logging-level) for how to enable debug log #### List models programmatically in your code -You can use [ModelZoo.listModels()](https://javadoc.io/static/ai.djl/api/0.24.0/ai/djl/repository/zoo/ModelZoo.html#listModels--) API to query available models. +You can use [ModelZoo.listModels()](https://javadoc.io/static/ai.djl/api/0.25.0/ai/djl/repository/zoo/ModelZoo.html#listModels--) API to query available models. #### List available models using DJL command line diff --git a/engines/ml/lightgbm/README.md b/engines/ml/lightgbm/README.md index cf97caeb56d..9232077d6b9 100644 --- a/engines/ml/lightgbm/README.md +++ b/engines/ml/lightgbm/README.md @@ -36,13 +36,13 @@ LightGBM can only run on top of the Linux/Mac/Windows machine using x86_64. ## Installation You can pull the LightGBM engine from the central Maven repository by including the following dependency: -- ai.djl.ml.lightgbm:lightgbm:0.24.0 +- ai.djl.ml.lightgbm:lightgbm:0.25.0 ```xml ai.djl.ml.lightgbm lightgbm - 0.24.0 + 0.25.0 runtime ``` diff --git a/engines/ml/xgboost/README.md b/engines/ml/xgboost/README.md index 02fd3970a07..7c41cfbdbcd 100644 --- a/engines/ml/xgboost/README.md +++ b/engines/ml/xgboost/README.md @@ -37,13 +37,13 @@ XGBoost can only run on top of the Linux/Mac machine. User can build from source ## Installation You can pull the XGBoost engine from the central Maven repository by including the following dependency: -- ai.djl.ml.xgboost:xgboost:0.24.0 +- ai.djl.ml.xgboost:xgboost:0.25.0 ```xml ai.djl.ml.xgboost xgboost - 0.24.0 + 0.25.0 runtime ``` diff --git a/engines/mxnet/mxnet-engine/README.md b/engines/mxnet/mxnet-engine/README.md index 7cdaa941435..58eba7ea094 100644 --- a/engines/mxnet/mxnet-engine/README.md +++ b/engines/mxnet/mxnet-engine/README.md @@ -7,7 +7,7 @@ This module contains the Deep Java Library (DJL) EngineProvider for Apache MXNet We don't recommend that developers use classes in this module directly. Use of these classes will couple your code with Apache MXNet and make switching between engines difficult. Even so, developers are not restricted from using engine-specific features. For more information, -see [NDManager#invoke()](https://javadoc.io/static/ai.djl/api/0.24.0/ai/djl/ndarray/NDManager.html#invoke-java.lang.String-ai.djl.ndarray.NDArray:A-ai.djl.ndarray.NDArray:A-ai.djl.util.PairList-). +see [NDManager#invoke()](https://javadoc.io/static/ai.djl/api/0.25.0/ai/djl/ndarray/NDManager.html#invoke-java.lang.String-ai.djl.ndarray.NDArray:A-ai.djl.ndarray.NDArray:A-ai.djl.util.PairList-). ## Documentation @@ -33,7 +33,7 @@ You can pull the MXNet engine from the central Maven repository by including the ai.djl.mxnet mxnet-engine - 0.24.0 + 0.25.0 runtime ``` diff --git a/engines/mxnet/mxnet-model-zoo/README.md b/engines/mxnet/mxnet-model-zoo/README.md index d73d92fd4b8..d97370fc56e 100644 --- a/engines/mxnet/mxnet-model-zoo/README.md +++ b/engines/mxnet/mxnet-model-zoo/README.md @@ -27,7 +27,7 @@ You can pull the MXNet engine from the central Maven repository by including the ai.djl.mxnet mxnet-model-zoo - 0.24.0 + 0.25.0 ``` diff --git a/engines/onnxruntime/onnxruntime-android/README.md b/engines/onnxruntime/onnxruntime-android/README.md index ba17c4a1683..c19594fc944 100644 --- a/engines/onnxruntime/onnxruntime-android/README.md +++ b/engines/onnxruntime/onnxruntime-android/README.md @@ -6,13 +6,13 @@ This module contains the DJL ONNX Runtime engine for Android. ## Installation You can pull the ONNX Runtime for Android from the central Maven repository by including the following dependency: -- ai.djl.android:onnxruntime:0.24.0 +- ai.djl.android:onnxruntime:0.25.0 ```xml ai.djl.android onnxruntime - 0.24.0 + 0.25.0 runtime ``` diff --git a/engines/onnxruntime/onnxruntime-engine/README.md b/engines/onnxruntime/onnxruntime-engine/README.md index 2e9812371af..249557f139e 100644 --- a/engines/onnxruntime/onnxruntime-engine/README.md +++ b/engines/onnxruntime/onnxruntime-engine/README.md @@ -37,13 +37,13 @@ for the official ONNX Runtime project. ## Installation You can pull the ONNX Runtime engine from the central Maven repository by including the following dependency: -- ai.djl.onnxruntime:onnxruntime-engine:0.24.0 +- ai.djl.onnxruntime:onnxruntime-engine:0.25.0 ```xml ai.djl.onnxruntime onnxruntime-engine - 0.24.0 + 0.25.0 runtime ``` @@ -61,7 +61,7 @@ Maven: ai.djl.onnxruntime onnxruntime-engine - 0.24.0 + 0.25.0 runtime @@ -81,7 +81,7 @@ Maven: Gradle: ```groovy -implementation("ai.djl.onnxruntime:onnxruntime-engine:0.24.0") { +implementation("ai.djl.onnxruntime:onnxruntime-engine:0.25.0") { exclude group: "com.microsoft.onnxruntime", module: "onnxruntime" } implementation "com.microsoft.onnxruntime:onnxruntime_gpu:1.14.0" diff --git a/engines/paddlepaddle/paddlepaddle-engine/README.md b/engines/paddlepaddle/paddlepaddle-engine/README.md index b79cf89af87..749ebf4a937 100644 --- a/engines/paddlepaddle/paddlepaddle-engine/README.md +++ b/engines/paddlepaddle/paddlepaddle-engine/README.md @@ -30,7 +30,7 @@ You can pull the PaddlePaddle engine from the central Maven repository by includ ai.djl.paddlepaddle paddlepaddle-engine - 0.24.0 + 0.25.0 runtime ``` diff --git a/engines/paddlepaddle/paddlepaddle-model-zoo/README.md b/engines/paddlepaddle/paddlepaddle-model-zoo/README.md index 98e4bb9d701..520dcd5808b 100644 --- a/engines/paddlepaddle/paddlepaddle-model-zoo/README.md +++ b/engines/paddlepaddle/paddlepaddle-model-zoo/README.md @@ -26,7 +26,7 @@ from the central Maven repository by including the following dependency: ai.djl.paddlepaddle paddlepaddle-model-zoo - 0.24.0 + 0.25.0 ``` diff --git a/engines/pytorch/pytorch-engine/README.md b/engines/pytorch/pytorch-engine/README.md index 3627e9202c1..fbe0df5516e 100644 --- a/engines/pytorch/pytorch-engine/README.md +++ b/engines/pytorch/pytorch-engine/README.md @@ -24,13 +24,13 @@ The javadocs output is built in the `build/doc/javadoc` folder. ## Installation You can pull the PyTorch engine from the central Maven repository by including the following dependency: -- ai.djl.pytorch:pytorch-engine:0.24.0 +- ai.djl.pytorch:pytorch-engine:0.25.0 ```xml ai.djl.pytorch pytorch-engine - 0.24.0 + 0.25.0 runtime ``` @@ -111,7 +111,7 @@ export PYTORCH_FLAVOR=cpu ### macOS For macOS, you can use the following library: -- ai.djl.pytorch:pytorch-jni:2.0.1-0.24.0 +- ai.djl.pytorch:pytorch-jni:2.0.1-0.25.0 - ai.djl.pytorch:pytorch-native-cpu:2.0.1:osx-x86_64 ```xml @@ -125,7 +125,7 @@ For macOS, you can use the following library: ai.djl.pytorch pytorch-jni - 2.0.1-0.24.0 + 2.0.1-0.25.0 runtime ``` @@ -135,7 +135,7 @@ For macOS, you can use the following library: ### macOS M1 For macOS M1, you can use the following library: -- ai.djl.pytorch:pytorch-jni:2.0.1-0.24.0 +- ai.djl.pytorch:pytorch-jni:2.0.1-0.25.0 - ai.djl.pytorch:pytorch-native-cpu:2.0.1:osx-aarch64 ```xml @@ -149,7 +149,7 @@ For macOS M1, you can use the following library: ai.djl.pytorch pytorch-jni - 2.0.1-0.24.0 + 2.0.1-0.25.0 runtime ``` @@ -160,7 +160,7 @@ installed on your GPU machine, you can use one of the following library: #### Linux GPU -- ai.djl.pytorch:pytorch-jni:2.0.1-0.24.0 +- ai.djl.pytorch:pytorch-jni:2.0.1-0.25.0 - ai.djl.pytorch:pytorch-native-cu118:2.0.1:linux-x86_64 - CUDA 11.8 ```xml @@ -174,14 +174,14 @@ installed on your GPU machine, you can use one of the following library: ai.djl.pytorch pytorch-jni - 2.0.1-0.24.0 + 2.0.1-0.25.0 runtime ``` ### Linux CPU -- ai.djl.pytorch:pytorch-jni:2.0.1-0.24.0 +- ai.djl.pytorch:pytorch-jni:2.0.1-0.25.0 - ai.djl.pytorch:pytorch-native-cpu:2.0.1:linux-x86_64 ```xml @@ -195,14 +195,14 @@ installed on your GPU machine, you can use one of the following library: ai.djl.pytorch pytorch-jni - 2.0.1-0.24.0 + 2.0.1-0.25.0 runtime ``` ### For aarch64 build -- ai.djl.pytorch:pytorch-jni:2.0.1-0.24.0 +- ai.djl.pytorch:pytorch-jni:2.0.1-0.25.0 - ai.djl.pytorch:pytorch-native-cpu-precxx11:2.0.1:linux-aarch64 ```xml @@ -216,7 +216,7 @@ installed on your GPU machine, you can use one of the following library: ai.djl.pytorch pytorch-jni - 2.0.1-0.24.0 + 2.0.1-0.25.0 runtime ``` @@ -226,7 +226,7 @@ installed on your GPU machine, you can use one of the following library: We also provide packages for the system like CentOS 7/Ubuntu 14.04 with GLIBC >= 2.17. All the package were built with GCC 7, we provided a newer `libstdc++.so.6.24` in the package that contains `CXXABI_1.3.9` to use the package successfully. -- ai.djl.pytorch:pytorch-jni:2.0.1-0.24.0 +- ai.djl.pytorch:pytorch-jni:2.0.1-0.25.0 - ai.djl.pytorch:pytorch-native-cu118-precxx11:2.0.1:linux-x86_64 - CUDA 11.8 - ai.djl.pytorch:pytorch-native-cpu-precxx11:2.0.1:linux-x86_64 - CPU @@ -241,7 +241,7 @@ All the package were built with GCC 7, we provided a newer `libstdc++.so.6.24` i ai.djl.pytorch pytorch-jni - 2.0.1-0.24.0 + 2.0.1-0.25.0 runtime ``` @@ -257,7 +257,7 @@ All the package were built with GCC 7, we provided a newer `libstdc++.so.6.24` i ai.djl.pytorch pytorch-jni - 2.0.1-0.24.0 + 2.0.1-0.25.0 runtime ``` @@ -272,7 +272,7 @@ For the Windows platform, you can choose between CPU and GPU. #### Windows GPU -- ai.djl.pytorch:pytorch-jni:2.0.1-0.24.0 +- ai.djl.pytorch:pytorch-jni:2.0.1-0.25.0 - ai.djl.pytorch:pytorch-native-cu118:2.0.1:win-x86_64 - CUDA 11.8 ```xml @@ -286,14 +286,14 @@ For the Windows platform, you can choose between CPU and GPU. ai.djl.pytorch pytorch-jni - 2.0.1-0.24.0 + 2.0.1-0.25.0 runtime ``` ### Windows CPU -- ai.djl.pytorch:pytorch-jni:2.0.1-0.24.0 +- ai.djl.pytorch:pytorch-jni:2.0.1-0.25.0 - ai.djl.pytorch:pytorch-native-cpu:2.0.1:win-x86_64 ```xml @@ -307,7 +307,7 @@ For the Windows platform, you can choose between CPU and GPU. ai.djl.pytorch pytorch-jni - 2.0.1-0.24.0 + 2.0.1-0.25.0 runtime ``` diff --git a/engines/pytorch/pytorch-model-zoo/README.md b/engines/pytorch/pytorch-model-zoo/README.md index 19c46ed57f5..bd237e7511a 100644 --- a/engines/pytorch/pytorch-model-zoo/README.md +++ b/engines/pytorch/pytorch-model-zoo/README.md @@ -25,7 +25,7 @@ You can pull the PyTorch engine from the central Maven repository by including t ai.djl.pytorch pytorch-model-zoo - 0.24.0 + 0.25.0 ``` diff --git a/engines/tensorflow/tensorflow-api/README.md b/engines/tensorflow/tensorflow-api/README.md index c0509e876ad..c0b03a81d31 100644 --- a/engines/tensorflow/tensorflow-api/README.md +++ b/engines/tensorflow/tensorflow-api/README.md @@ -16,6 +16,6 @@ You can pull the TensorFlow core java API from the central Maven repository by i ai.djl.tensorflow tensorflow-api - 0.24.0 + 0.25.0 ``` diff --git a/engines/tensorflow/tensorflow-engine/README.md b/engines/tensorflow/tensorflow-engine/README.md index 62e202c8692..d4669c87b5a 100644 --- a/engines/tensorflow/tensorflow-engine/README.md +++ b/engines/tensorflow/tensorflow-engine/README.md @@ -28,13 +28,13 @@ The javadocs output is built in the `build/doc/javadoc` folder. You can pull the TensorFlow engine from the central Maven repository by including the following dependency: -- ai.djl.tensorflow:tensorflow-engine:0.24.0 +- ai.djl.tensorflow:tensorflow-engine:0.25.0 ```xml ai.djl.tensorflow tensorflow-engine - 0.24.0 + 0.25.0 runtime ``` diff --git a/engines/tensorflow/tensorflow-model-zoo/README.md b/engines/tensorflow/tensorflow-model-zoo/README.md index bec42e53cd4..46667133f5f 100644 --- a/engines/tensorflow/tensorflow-model-zoo/README.md +++ b/engines/tensorflow/tensorflow-model-zoo/README.md @@ -26,7 +26,7 @@ from the central Maven repository by including the following dependency: ai.djl.tensorflow tensorflow-model-zoo - 0.24.0 + 0.25.0 ``` diff --git a/engines/tensorrt/README.md b/engines/tensorrt/README.md index 7a132787004..cbb71b16b8d 100644 --- a/engines/tensorrt/README.md +++ b/engines/tensorrt/README.md @@ -28,13 +28,13 @@ The javadocs output is generated in the `build/doc/javadoc` folder. ## Installation You can pull the TensorRT engine from the central Maven repository by including the following dependency: -- ai.djl.tensorrt:tensorrt:0.24.0 +- ai.djl.tensorrt:tensorrt:0.25.0 ```xml ai.djl.tensorrt tensorrt - 0.24.0 + 0.25.0 runtime ``` diff --git a/engines/tflite/tflite-engine/README.md b/engines/tflite/tflite-engine/README.md index 34d47ba26b0..5191e46534e 100644 --- a/engines/tflite/tflite-engine/README.md +++ b/engines/tflite/tflite-engine/README.md @@ -24,13 +24,13 @@ The javadocs output is built in the `build/doc/javadoc` folder. ## Installation You can pull the TensorFlow Lite engine from the central Maven repository by including the following dependency: -- ai.djl.tflite:tflite-engine:0.24.0 +- ai.djl.tflite:tflite-engine:0.25.0 ```xml ai.djl.tflite tflite-engine - 0.24.0 + 0.25.0 runtime ``` diff --git a/extensions/audio/README.md b/extensions/audio/README.md index 3cc19cb6902..2c040526122 100644 --- a/extensions/audio/README.md +++ b/extensions/audio/README.md @@ -23,6 +23,6 @@ You can pull the module from the central Maven repository by including the follo ai.djl.audio audio - 0.24.0 + 0.25.0 ``` diff --git a/extensions/aws-ai/README.md b/extensions/aws-ai/README.md index 7ffb2355551..a95484c8a73 100644 --- a/extensions/aws-ai/README.md +++ b/extensions/aws-ai/README.md @@ -58,6 +58,6 @@ You can pull the module from the central Maven repository by including the follo ai.djl.aws aws-ai - 0.24.0 + 0.25.0 ``` diff --git a/extensions/fasttext/README.md b/extensions/fasttext/README.md index be522087fd2..7e763aeca3d 100644 --- a/extensions/fasttext/README.md +++ b/extensions/fasttext/README.md @@ -34,7 +34,7 @@ You can pull the fastText engine from the central Maven repository by including ai.djl.fasttext fasttext-engine - 0.24.0 + 0.25.0 ``` diff --git a/extensions/hadoop/README.md b/extensions/hadoop/README.md index 812e3f39a05..92b38b86d42 100644 --- a/extensions/hadoop/README.md +++ b/extensions/hadoop/README.md @@ -52,6 +52,6 @@ You can pull the module from the central Maven repository by including the follo ai.djl.hadoop hadoop - 0.24.0 + 0.25.0 ``` diff --git a/extensions/opencv/README.md b/extensions/opencv/README.md index 3c17f1293cb..cbe481002fe 100644 --- a/extensions/opencv/README.md +++ b/extensions/opencv/README.md @@ -23,6 +23,6 @@ You can pull the module from the central Maven repository by including the follo ai.djl.opencv opencv - 0.24.0 + 0.25.0 ``` diff --git a/extensions/sentencepiece/README.md b/extensions/sentencepiece/README.md index 577f7b1af94..bdf01857c95 100644 --- a/extensions/sentencepiece/README.md +++ b/extensions/sentencepiece/README.md @@ -23,6 +23,6 @@ You can pull the module from the central Maven repository by including the follo ai.djl.sentencepiece sentencepiece - 0.24.0 + 0.25.0 ``` diff --git a/extensions/spark/README.md b/extensions/spark/README.md index 300706b4e7e..3ae23bffc31 100644 --- a/extensions/spark/README.md +++ b/extensions/spark/README.md @@ -34,7 +34,7 @@ You can pull the module from the central Maven repository by including the follo ai.djl.spark spark_2.12 - 0.24.0 + 0.25.0 ``` diff --git a/extensions/tablesaw/README.md b/extensions/tablesaw/README.md index bab368ed10b..48104b14995 100644 --- a/extensions/tablesaw/README.md +++ b/extensions/tablesaw/README.md @@ -25,6 +25,6 @@ You can pull the module from the central Maven repository by including the follo ai.djl.tablesaw tablesaw - 0.24.0 + 0.25.0 ``` diff --git a/extensions/timeseries/README.md b/extensions/timeseries/README.md index 86a4d7ca3ac..3401aeaec8d 100644 --- a/extensions/timeseries/README.md +++ b/extensions/timeseries/README.md @@ -245,6 +245,6 @@ You can pull the module from the central Maven repository by including the follo ai.djl.timeseries timeseries - 0.24.0 + 0.25.0 ``` diff --git a/extensions/timeseries/docs/forecast_with_M5_data.md b/extensions/timeseries/docs/forecast_with_M5_data.md index 6119016b485..80412411a3c 100644 --- a/extensions/timeseries/docs/forecast_with_M5_data.md +++ b/extensions/timeseries/docs/forecast_with_M5_data.md @@ -56,7 +56,7 @@ repositories { } dependencies { implementation "org.apache.logging.log4j:log4j-slf4j-impl:2.17.1" - implementation platform("ai.djl:bom:0.24.0") + implementation platform("ai.djl:bom:0.25.0") implementation "ai.djl:api" implementation "ai.djl.timeseries" runtimeOnly "ai.djl.mxnet:mxnet-engine" diff --git a/extensions/tokenizers/README.md b/extensions/tokenizers/README.md index a8805c03dde..8511de17eb1 100644 --- a/extensions/tokenizers/README.md +++ b/extensions/tokenizers/README.md @@ -23,7 +23,7 @@ You can pull the module from the central Maven repository by including the follo ai.djl.huggingface tokenizers - 0.24.0 + 0.25.0 ``` diff --git a/jupyter/BERTQA.ipynb b/jupyter/BERTQA.ipynb index 8c7cda2cc7c..7f4d1d01f38 100644 --- a/jupyter/BERTQA.ipynb +++ b/jupyter/BERTQA.ipynb @@ -46,11 +46,11 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl.mxnet:mxnet-engine:0.24.0\n", - "%maven ai.djl.mxnet:mxnet-model-zoo:0.24.0\n", - "%maven ai.djl.pytorch:pytorch-engine:0.24.0\n", - "%maven ai.djl.pytorch:pytorch-model-zoo:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl.mxnet:mxnet-engine:0.25.0\n", + "%maven ai.djl.mxnet:mxnet-model-zoo:0.25.0\n", + "%maven ai.djl.pytorch:pytorch-engine:0.25.0\n", + "%maven ai.djl.pytorch:pytorch-model-zoo:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] }, diff --git a/jupyter/load_mxnet_model.ipynb b/jupyter/load_mxnet_model.ipynb index 2997a7e6434..ab8b20d7243 100644 --- a/jupyter/load_mxnet_model.ipynb +++ b/jupyter/load_mxnet_model.ipynb @@ -22,10 +22,10 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl:model-zoo:0.24.0\n", - "%maven ai.djl.mxnet:mxnet-engine:0.24.0\n", - "%maven ai.djl.mxnet:mxnet-model-zoo:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl:model-zoo:0.25.0\n", + "%maven ai.djl.mxnet:mxnet-engine:0.25.0\n", + "%maven ai.djl.mxnet:mxnet-model-zoo:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] }, diff --git a/jupyter/load_pytorch_model.ipynb b/jupyter/load_pytorch_model.ipynb index 78fcee31a6b..f808f280ecd 100644 --- a/jupyter/load_pytorch_model.ipynb +++ b/jupyter/load_pytorch_model.ipynb @@ -25,8 +25,8 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl.pytorch:pytorch-engine:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl.pytorch:pytorch-engine:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] }, diff --git a/jupyter/mxnet/load_your_own_mxnet_bert.ipynb b/jupyter/mxnet/load_your_own_mxnet_bert.ipynb index 5a786d1f20d..b6d9e0ec088 100644 --- a/jupyter/mxnet/load_your_own_mxnet_bert.ipynb +++ b/jupyter/mxnet/load_your_own_mxnet_bert.ipynb @@ -41,9 +41,9 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl.mxnet:mxnet-engine:0.24.0\n", - "%maven ai.djl.mxnet:mxnet-model-zoo:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl.mxnet:mxnet-engine:0.25.0\n", + "%maven ai.djl.mxnet:mxnet-model-zoo:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] }, diff --git a/jupyter/object_detection_with_model_zoo.ipynb b/jupyter/object_detection_with_model_zoo.ipynb index 0faf55899d8..3082dcc117a 100644 --- a/jupyter/object_detection_with_model_zoo.ipynb +++ b/jupyter/object_detection_with_model_zoo.ipynb @@ -21,9 +21,9 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl.mxnet:mxnet-engine:0.24.0\n", - "%maven ai.djl.mxnet:mxnet-model-zoo:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl.mxnet:mxnet-engine:0.25.0\n", + "%maven ai.djl.mxnet:mxnet-model-zoo:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] }, diff --git a/jupyter/onnxruntime/machine_learning_with_ONNXRuntime.ipynb b/jupyter/onnxruntime/machine_learning_with_ONNXRuntime.ipynb index 91c98ea36ae..e155696f89e 100644 --- a/jupyter/onnxruntime/machine_learning_with_ONNXRuntime.ipynb +++ b/jupyter/onnxruntime/machine_learning_with_ONNXRuntime.ipynb @@ -54,8 +54,8 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl.onnxruntime:onnxruntime-engine:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl.onnxruntime:onnxruntime-engine:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] }, @@ -92,7 +92,7 @@ "`Predictor`. The post-processing block allows you to convert the output from the `Predictor` to the desired output\n", "format.\n", "\n", - "In our use case, we use a class namely `IrisFlower` as our input class type. We will use [`Classifications`](https://javadoc.io/doc/ai.djl/api/0.24.0/ai/djl/modality/Classifications.html) as our output class type." + "In our use case, we use a class namely `IrisFlower` as our input class type. We will use [`Classifications`](https://javadoc.io/doc/ai.djl/api/0.25.0/ai/djl/modality/Classifications.html) as our output class type." ] }, { @@ -164,7 +164,7 @@ "source": [ "## Step 2 Prepare your model\n", "\n", - "We will load a pretrained sklearn model into DJL. We defined a [`ModelZoo`](https://javadoc.io/doc/ai.djl/api/0.24.0/ai/djl/repository/zoo/ModelZoo.html) concept to allow user load model from varity of locations, such as remote URL, local files or DJL pretrained model zoo. We need to define [`Criteria`](https://javadoc.io/doc/ai.djl/api/0.24.0/ai/djl/repository/zoo/Criteria.html) class to help the modelzoo locate the model and attach translator. In this example, we download a compressed ONNX model from S3." + "We will load a pretrained sklearn model into DJL. We defined a [`ModelZoo`](https://javadoc.io/doc/ai.djl/api/0.25.0/ai/djl/repository/zoo/ModelZoo.html) concept to allow user load model from varity of locations, such as remote URL, local files or DJL pretrained model zoo. We need to define [`Criteria`](https://javadoc.io/doc/ai.djl/api/0.25.0/ai/djl/repository/zoo/Criteria.html) class to help the modelzoo locate the model and attach translator. In this example, we download a compressed ONNX model from S3." ] }, { diff --git a/jupyter/paddlepaddle/face_mask_detection_paddlepaddle.ipynb b/jupyter/paddlepaddle/face_mask_detection_paddlepaddle.ipynb index f5176215605..01e8bdbb7aa 100644 --- a/jupyter/paddlepaddle/face_mask_detection_paddlepaddle.ipynb +++ b/jupyter/paddlepaddle/face_mask_detection_paddlepaddle.ipynb @@ -26,12 +26,12 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl.paddlepaddle:paddlepaddle-model-zoo:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl.paddlepaddle:paddlepaddle-model-zoo:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32\n", "\n", "// second engine to do preprocessing and postprocessing\n", - "%maven ai.djl.pytorch:pytorch-engine:0.24.0" + "%maven ai.djl.pytorch:pytorch-engine:0.25.0" ] }, { diff --git a/jupyter/paddlepaddle/face_mask_detection_paddlepaddle_zh.ipynb b/jupyter/paddlepaddle/face_mask_detection_paddlepaddle_zh.ipynb index fb4074fe9aa..8376579cafb 100644 --- a/jupyter/paddlepaddle/face_mask_detection_paddlepaddle_zh.ipynb +++ b/jupyter/paddlepaddle/face_mask_detection_paddlepaddle_zh.ipynb @@ -24,12 +24,12 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl.paddlepaddle:paddlepaddle-model-zoo:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl.paddlepaddle:paddlepaddle-model-zoo:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32\n", "\n", "// second engine to do preprocessing and postprocessing\n", - "%maven ai.djl.pytorch:pytorch-engine:0.24.0" + "%maven ai.djl.pytorch:pytorch-engine:0.25.0" ] }, { diff --git a/jupyter/paddlepaddle/paddle_ocr_java.ipynb b/jupyter/paddlepaddle/paddle_ocr_java.ipynb index a7984acc400..6ad1884d7d6 100644 --- a/jupyter/paddlepaddle/paddle_ocr_java.ipynb +++ b/jupyter/paddlepaddle/paddle_ocr_java.ipynb @@ -25,12 +25,12 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl.paddlepaddle:paddlepaddle-model-zoo:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl.paddlepaddle:paddlepaddle-model-zoo:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32\n", "\n", "// second engine to do preprocessing and postprocessing\n", - "%maven ai.djl.pytorch:pytorch-engine:0.24.0" + "%maven ai.djl.pytorch:pytorch-engine:0.25.0" ] }, { diff --git a/jupyter/paddlepaddle/paddle_ocr_java_zh.ipynb b/jupyter/paddlepaddle/paddle_ocr_java_zh.ipynb index 1e60b733e22..5c7fe003a45 100644 --- a/jupyter/paddlepaddle/paddle_ocr_java_zh.ipynb +++ b/jupyter/paddlepaddle/paddle_ocr_java_zh.ipynb @@ -23,12 +23,12 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl.paddlepaddle:paddlepaddle-model-zoo:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl.paddlepaddle:paddlepaddle-model-zoo:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32\n", "\n", "// second engine to do preprocessing and postprocessing\n", - "%maven ai.djl.pytorch:pytorch-engine:0.24.0" + "%maven ai.djl.pytorch:pytorch-engine:0.25.0" ] }, { diff --git a/jupyter/pytorch/load_your_own_pytorch_bert.ipynb b/jupyter/pytorch/load_your_own_pytorch_bert.ipynb index 2602b42accb..bf374ca7778 100644 --- a/jupyter/pytorch/load_your_own_pytorch_bert.ipynb +++ b/jupyter/pytorch/load_your_own_pytorch_bert.ipynb @@ -41,9 +41,9 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl.pytorch:pytorch-engine:0.24.0\n", - "%maven ai.djl.pytorch:pytorch-model-zoo:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl.pytorch:pytorch-engine:0.25.0\n", + "%maven ai.djl.pytorch:pytorch-model-zoo:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] }, diff --git a/jupyter/rank_classification_using_BERT_on_Amazon_Review.ipynb b/jupyter/rank_classification_using_BERT_on_Amazon_Review.ipynb index 7afcf3c965c..a313a784b6a 100644 --- a/jupyter/rank_classification_using_BERT_on_Amazon_Review.ipynb +++ b/jupyter/rank_classification_using_BERT_on_Amazon_Review.ipynb @@ -38,13 +38,13 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl:basicdataset:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl:basicdataset:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32\n", - "%maven ai.djl.mxnet:mxnet-model-zoo:0.24.0\n", + "%maven ai.djl.mxnet:mxnet-model-zoo:0.25.0\n", "\n", "// PyTorch\n", - "// %maven ai.djl.pytorch:pytorch-model-zoo:0.24.0" + "// %maven ai.djl.pytorch:pytorch-model-zoo:0.25.0" ] }, { diff --git a/jupyter/tensorflow/pneumonia_detection.ipynb b/jupyter/tensorflow/pneumonia_detection.ipynb index 76bcc28ff22..e8e7ed3cf9f 100644 --- a/jupyter/tensorflow/pneumonia_detection.ipynb +++ b/jupyter/tensorflow/pneumonia_detection.ipynb @@ -36,10 +36,10 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl.tensorflow:tensorflow-api:0.24.0\n", - "%maven ai.djl.tensorflow:tensorflow-engine:0.24.0\n", - "%maven ai.djl.tensorflow:tensorflow-model-zoo:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl.tensorflow:tensorflow-api:0.25.0\n", + "%maven ai.djl.tensorflow:tensorflow-engine:0.25.0\n", + "%maven ai.djl.tensorflow:tensorflow-model-zoo:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] }, diff --git a/jupyter/tensorflow/rank_classification_using_BERT_on_Amazon_Review.ipynb b/jupyter/tensorflow/rank_classification_using_BERT_on_Amazon_Review.ipynb index b0f69421aa6..cce5a9a8b2d 100644 --- a/jupyter/tensorflow/rank_classification_using_BERT_on_Amazon_Review.ipynb +++ b/jupyter/tensorflow/rank_classification_using_BERT_on_Amazon_Review.ipynb @@ -36,9 +36,9 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl.tensorflow:tensorflow-engine:0.24.0\n", - "%maven ai.djl.tensorflow:tensorflow-api:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl.tensorflow:tensorflow-engine:0.25.0\n", + "%maven ai.djl.tensorflow:tensorflow-api:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] }, diff --git a/jupyter/tensorflow_lite/inference_with_tensorflow_lite.ipynb b/jupyter/tensorflow_lite/inference_with_tensorflow_lite.ipynb index 126376de4fc..45b678d232a 100644 --- a/jupyter/tensorflow_lite/inference_with_tensorflow_lite.ipynb +++ b/jupyter/tensorflow_lite/inference_with_tensorflow_lite.ipynb @@ -22,13 +22,13 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl:model-zoo:0.24.0\n", - "%maven ai.djl.tflite:tflite-engine:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl:model-zoo:0.25.0\n", + "%maven ai.djl.tflite:tflite-engine:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32\n", "\n", "// Use secondary engine to help pre-processing and post-processing\n", - "%maven ai.djl.pytorch:pytorch-engine:0.24.0" + "%maven ai.djl.pytorch:pytorch-engine:0.25.0" ] }, { diff --git a/jupyter/transfer_learning_on_cifar10.ipynb b/jupyter/transfer_learning_on_cifar10.ipynb index 1692d98728e..542e4369038 100644 --- a/jupyter/transfer_learning_on_cifar10.ipynb +++ b/jupyter/transfer_learning_on_cifar10.ipynb @@ -35,10 +35,10 @@ "source": [ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl:basicdataset:0.24.0\n", - "%maven ai.djl.mxnet:mxnet-engine:0.24.0\n", - "%maven ai.djl.mxnet:mxnet-model-zoo:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl:basicdataset:0.25.0\n", + "%maven ai.djl.mxnet:mxnet-engine:0.25.0\n", + "%maven ai.djl.mxnet:mxnet-model-zoo:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] }, diff --git a/jupyter/tutorial/01_create_your_first_network.ipynb b/jupyter/tutorial/01_create_your_first_network.ipynb index 461121737e9..a187eb4446d 100644 --- a/jupyter/tutorial/01_create_your_first_network.ipynb +++ b/jupyter/tutorial/01_create_your_first_network.ipynb @@ -27,7 +27,7 @@ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", "// Add the maven dependencies\n", - "%maven ai.djl:api:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] }, diff --git a/jupyter/tutorial/02_train_your_first_model.ipynb b/jupyter/tutorial/02_train_your_first_model.ipynb index a650a781f60..36eef2e7e7f 100644 --- a/jupyter/tutorial/02_train_your_first_model.ipynb +++ b/jupyter/tutorial/02_train_your_first_model.ipynb @@ -20,13 +20,13 @@ "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.24.0\n", - "%maven ai.djl:basicdataset:0.24.0\n", - "%maven ai.djl:model-zoo:0.24.0\n", - "%maven ai.djl.mxnet:mxnet-engine:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl:basicdataset:0.25.0\n", + "%maven ai.djl:model-zoo:0.25.0\n", + "%maven ai.djl.mxnet:mxnet-engine:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] }, diff --git a/jupyter/tutorial/03_image_classification_with_your_model.ipynb b/jupyter/tutorial/03_image_classification_with_your_model.ipynb index 5de8fa9873a..fd955a2cba9 100644 --- a/jupyter/tutorial/03_image_classification_with_your_model.ipynb +++ b/jupyter/tutorial/03_image_classification_with_your_model.ipynb @@ -26,10 +26,10 @@ "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", "// Add the maven dependencies\n", - "%maven ai.djl:api:0.24.0\n", - "%maven ai.djl:model-zoo:0.24.0\n", - "%maven ai.djl.mxnet:mxnet-engine:0.24.0\n", - "%maven ai.djl.mxnet:mxnet-model-zoo:0.24.0\n", + "%maven ai.djl:api:0.25.0\n", + "%maven ai.djl:model-zoo:0.25.0\n", + "%maven ai.djl.mxnet:mxnet-engine:0.25.0\n", + "%maven ai.djl.mxnet:mxnet-model-zoo:0.25.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] }, diff --git a/model-zoo/README.md b/model-zoo/README.md index 15d583c1d9a..67174fe9ee5 100644 --- a/model-zoo/README.md +++ b/model-zoo/README.md @@ -33,7 +33,7 @@ You can pull the model zoo from the central Maven repository by including the fo ai.djl model-zoo - 0.24.0 + 0.25.0 ```