|
--- |
|
license: apache-2.0 |
|
language: |
|
- ru |
|
- az |
|
- en |
|
- ar |
|
- es |
|
- tr |
|
- be |
|
- tk |
|
- de |
|
metrics: |
|
- accuracy |
|
pipeline_tag: translation |
|
library_name: transformers |
|
--- |
|
# Cosmos Babel v1.1 |
|
|
|
Project Cosmos Babel v1.1 is an advanced AI-powered multi-language translator designed to deliver fast, accurate translations across a wide spectrum of languages. Developed and actively used within the Twinky social network, this model is engineered to bridge language gaps and foster global communication. |
|
|
|
## Key Features |
|
|
|
- **Multi-Language Support:** |
|
Seamlessly translate text between dozens of languages. |
|
|
|
- **High Accuracy & Speed:** |
|
Outperforms many competing models with state-of-the-art translation quality and rapid response times. |
|
|
|
- **Proven in Production:** |
|
Developed and refined through real-world usage on the Twinky social network. |
|
|
|
- **Scalable & Versatile:** |
|
Adaptable for a variety of applications, from social media to enterprise solutions. |
|
|
|
|
|
## Translation using Cosmos Babel Model |
|
|
|
This script demonstrates how to use the Cosmos Babel model for translation from Russian to Azerbaijani. |
|
|
|
```python |
|
from transformers import pipeline |
|
|
|
# Initialize the translation pipeline with the Cosmos Babel model |
|
translator = pipeline("translation", model="doofz/cosmosbabel-v1.1-multitranslator-gguf") |
|
|
|
# Input text in Russian |
|
russian_text = "Привет, как дела?" |
|
|
|
# Translate from Russian (ru) to Azerbaijani (az) |
|
translation = translator(russian_text, src_lang="ru", tgt_lang="az") |
|
|
|
# Display the results |
|
print("Original (Russian):", russian_text) |
|
print("Translated (Azerbaijani):", translation[0]['translation_text']) |
|
``` |