https://github.com/vhidvz/machine-translation
Multilingual machine translation microservice powered by the Facebook/mBART-large model
https://github.com/vhidvz/machine-translation
ai facebook-mbart fastapi huggingface machine-translation multilingual
Last synced: about 1 month ago
JSON representation
Multilingual machine translation microservice powered by the Facebook/mBART-large model
- Host: GitHub
- URL: https://github.com/vhidvz/machine-translation
- Owner: vhidvz
- License: mit
- Created: 2024-09-09T05:23:13.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-20T06:28:07.000Z (almost 2 years ago)
- Last Synced: 2025-04-19T14:08:22.240Z (about 1 year ago)
- Topics: ai, facebook-mbart, fastapi, huggingface, machine-translation, multilingual
- Language: Python
- Homepage: https://vhidvz.github.io/machine-translation/
- Size: 39.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Quick Start
Multilingual machine translation microservice powered by the Facebook/mBART-large model, offering high-quality translations across multiple languages with contextual accuracy and fluency.
```sh
git clone git@github.com:vhidvz/machine-translation.git
cd machine-translation && docker-compose up -d
```
**Docker Hub:**
```sh
docker run -p 8000:8000 vhidvz/machine-translation: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
```