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
- Host: GitHub
- URL: https://github.com/vhidvz/language-identification
- Owner: vhidvz
- License: mit
- Created: 2024-09-08T06:27:11.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-20T06:28:41.000Z (almost 2 years ago)
- Last Synced: 2025-02-04T11:12:19.839Z (over 1 year ago)
- Topics: ai, fastapi, fasttext, language-identification
- Language: Python
- Homepage: https://vhidvz.github.io/language-identification/
- Size: 62.5 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```