Java API Usage example

Creating a model instance and loading model

1
            this._m = new DeepSpeechModel(tfliteModel, BEAM_WIDTH);

Performing inference

1
            String decoded = this._m.stt(shorts, shorts.length);

Full source code

See Full source code.