djl

NLP support with fastText

Overview

This module contains the NLP support with fastText implementation.

fastText module’s implementation in DJL is not considered as an Engine, it doesn’t support Trainer and Predictor. Training is only supported by using TrainFastText. This produces a special block which can perform inference on its own or by using a model and predictor. Pre-trained FastText models can also be loaded by using the standard DJL criteria. You can find examples here.

Current implementation has the following limitations:

Documentation

The latest javadocs can be found on here.

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 fastText engine from the central Maven repository by including the following dependency:

<dependency>
    <groupId>ai.djl.fasttext</groupId>
    <artifactId>fasttext-engine</artifactId>
    <version>0.27.0</version>
</dependency>