Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 1.61 KB

quick_start.md

File metadata and controls

35 lines (22 loc) · 1.61 KB

Quick start

Deep Java Library (DJL) is designed to be easy to get started with and simple to use. The easiest way to learn DJL is to read the beginner tutorial or our examples.

Prerequisites

  • You need a Java Development Kit (JDK) installed on your system. We recommend using JDK 8, but any later version also works. For more information, see Setup.
  • You need git installed on your system to clone the DJL repository.

Get source code

We try our best to maintain a stable master branch. If you experience issues with the master branch, use the latest stable release.

Beginner tutorial

To get started, we recommend that you follow our short beginner tutorial. It takes you through some of the basics of deep learning to create a model, train your model, and run inference using your trained model.

Run examples

DJL also provides examples for both training and performing inference with deep learning models. You can find the examples and their source code in the examples directory.

All of our examples are executed by a simple command. For detailed command line instructions, see each example’s Readme.md file.

Other resources