Skip to main content

server for mozilla deepspeech

Project description

https://travis-ci.org/MainRo/deepspeech-server.svg?branch=master https://badge.fury.io/py/deepspeech-server.svg

Key Features

This is an http server that can be used to test the Mozilla DeepSpeech project. You need an environment with DeepSpeech and a model to run this server.

Installation

You first need to install deepspeech. Depending on your system you can use the CPU package:

pip3 install deepspeech

Or the GPU package:

pip3 install deepspeech-gpu

Then you can install the deepspeech server:

python3 setup.py install

The server is also available on pypi, so you can install it with pip:

pip3 install deepspeech-server

Note that python 3.5 is the minimum version required to run the server.

Starting the server

deepspeech-server --config config.json

You can use deepspeech without training a model yourself. Pre-trained models are provided by Mozilla in the release page of the project (See the assets section of the release not):

https://github.com/mozilla/DeepSpeech/releases

Once your downloaded a pre-trained model, you can untar it and directly use the sample configuration file:

cp config.sample.json config.json
deepspeech-server --config config.json

Server configuration

The configuration is done with a json file, provided with the “–config” argument. Its structure is the following one:

{
  "deepspeech": {
    "model" :"models/output_graph.pb",
    "alphabet": "models/alphabet.txt",
    "lm": "models/lm.binary",
    "trie": "models/trie"
  },
  "server": {
    "http": {
      "request_max_size": 1048576
    }
  }
}

The configuration file contains several sections and sub-sections.

deepspeech section configuration

Section “deepspeech” contains configuration of the deepspeech engine:

model is the protobuf model that was generated by deepspeech

alphabet is the alphabet dictionary (as available in the “data” directory of the DeepSpeech sources).

lm is the language model.

trie is the trie file.

Section “server” contains configuration of the access part, with on subsection per protocol:

http section configuration

request_max_size (default value: 1048576, i.e. 1MiB) is the maximum payload size allowed by the server. A received payload size above this threshold will return a “413: Request Entity Too Large” error.

host (default value: “0.0.0.0”) is the listen address of the http server.

port (default value: 8080) is the listening port of the http server.

Using the server

Inference on the model is done via http post requests. For example with the following curl command:

curl -X POST --data-binary @testfile.wav http://localhost:8080/stt

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deepspeech-server-0.5.0.tar.gz (5.2 kB view details)

Uploaded Source

File details

Details for the file deepspeech-server-0.5.0.tar.gz.

File metadata

  • Download URL: deepspeech-server-0.5.0.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.6

File hashes

Hashes for deepspeech-server-0.5.0.tar.gz
Algorithm Hash digest
SHA256 6a18dfbb19236009c596a1f81bc81094e53f702efbd08a8da9e8f6c2a55c4b73
MD5 25e3a612f9cab9415fbf7fd606e0f301
BLAKE2b-256 74c8209142919f8a2bd1f3e059ff9229f81dbeaf715c915afc5d40d2e27417e8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page