An open API service indexing awesome lists of open source software.

https://github.com/vhidvz/language-identification

Language identification microservice powered by the FastText language detection model
https://github.com/vhidvz/language-identification

ai fastapi fasttext language-identification

Last synced: 6 months ago
JSON representation

Language identification microservice powered by the FastText language detection model

Awesome Lists containing this project

README

          

# Quick Start

Language identification microservice powered by the FastText language detection model, providing fast and accurate recognition of over 170 languages.

```sh
git clone git@github.com:vhidvz/language-identification.git
cd language-identification && docker-compose up -d
```

**Docker Hub:**

```sh
docker run -p 8000:8000 vhidvz/language-identification:latest
```

Endpoints are fully documented using OpenAPI Specification 3 (OAS3) at:

- ReDoc:
- Swagger:

## Documentation

To generate the documentation for the python model, execute the following command:

```sh
pdoc --output-dir docs model.py
```