Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.22 KB

README.md

File metadata and controls

36 lines (27 loc) · 1.22 KB

DJL - core API

Overview

This module contains the core API of the Deep Java Library (DJL) project. It includes the following packages:

  • engine - Contains classes to load a deep learning framework
  • inference - Contains classes to implement inference tasks
  • metric - Contains classes to collect metrics information
  • modality - Contains utility classes for each of the predefined modalities
  • ndarray - Contains classes and interfaces to define an n-dimensional array
  • nn - Contains classes to define neural network operators
  • training - Contains classes to implement training tasks
  • translate - Contains classes and interfaces to translate between java objects and NDArrays

Documentation

The latest javadocs can be found on the djl.ai website.

You can also build the latest javadocs locally using the following command:

./gradlew javadoc

The javadocs output is built in the build/doc/javadoc folder.

Installation

You can pull the DJL API from the central Maven repository by including the following dependency in your pom.xml file:

<dependency>
    <groupId>ai.djl</groupId>
    <artifactId>api</artifactId>
    <version>0.2.0</version>
</dependency>