This module contains examples to demonstrate use of the Deep Java Library (DJL). You can find more examples from our djl-demo github repo.
The following examples are included for training:
- Train your first model
- Transfer learning on cifar10
- Transfer learning on freshfruit
- Train SSD model example
- Multi-label dataset training example
The following examples are included for inference:
- Image classification example
- Segment anything 2 example
- Single-shot object detection example
- Face detection example
- Face recognition example
- Instance segmentation example
- Semantic segmentation example
- Pose estimation example
- Action recognition example
- Image generation with BigGAN example
- Image enhancement with Super-Resolution example
- Bert question and answer example
- Speech recognition example
These examples focus on the overall experience of training and inference. We keep components that are reusable within separate modules for other users to take advantage of in their own applications. For examples and references on creating datasets, look at the basic dataset module. For examples and references on building models and translators, look in our basic model zoo.
You may be able to find more translator examples in our engine specific model zoos: Apache MXNet, PyTorch, and TensorFlow.
More examples and demos of applications featuring DJL are located in our demo repository.
- You need to have Java Development Kit version 8 or later installed on your system. For more information, see Setup.
- You should be familiar with the API documentation in the DJL Javadoc.
This example supports building with both Gradle and Maven. To build, use either of the following commands:
- Gradle build
cd examples
# for Linux/macOS:
./gradlew jar
# for Windows:
..\gradlew jar
- Maven build
cd examples
mvn package -DskipTests
With the gradle application
plugin you can execute example code directly.
For more information on running each example, see the example's documentation.
The following command executes an object detection example:
- Gradle
cd examples
# for Linux/macOS:
./gradlew run
# for Windows:
..\gradlew run
- Maven
cd examples
mvn clean package -DskipTests
mvn exec:java
DJL is engine agnostic, so it's capable of supporting different backends. DJL by default will select proper native library for you automatically and download those libraries from internet. If your production environment doesn't have network access, you can distribute DJL's offline native packages together with your application to avoid download engine native libraries at runtime.
With Apache MXNet, PyTorch, TensorFlow and ONNX Runtime, you can choose different builds of the native library. You can also see: