๐ฎ NLLB-RenPy: Specialized French Gaming Translator
๐ Model Description
This model is a fine-tuned version of facebook/nllb-200-distilled-600M specifically trained for English-to-French translation in gaming contexts, particularly RenPy visual novels.
๐ฏ Specialized For:
- ๐ฎ Gaming interfaces and menus
- ๐ฌ Character dialogues and narratives
- ๐ Romance and emotional expressions
- ๐ Interactive choices and options
- ๐ฑ UI elements and notifications
๐ Performance Highlights:
- Superior quality vs Google Translate/DeepL for gaming
- Context-aware translations maintaining gaming tone
- Optimized for visual novel terminology
- Consistent character voice preservation
๐ Quick Start
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
# Load model
model = AutoModelForSeq2SeqLM.from_pretrained("virusf/nllb-renpy")
tokenizer = AutoTokenizer.from_pretrained("virusf/nllb-renpy")
# Translate
text = "Hello! Welcome to our game."
inputs = tokenizer(text, return_tensors="pt")
outputs = model.generate(**inputs, forced_bos_token_id=tokenizer.convert_tokens_to_ids("fra_Latn"))
result = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(result) # "Bonjour! Bienvenue dans notre jeu."
๐ Training Details
Base Model: facebook/nllb-200-distilled-600M
Training Data: 15,000+ specialized gaming translations
Languages: English โ French
Epochs: 2.0
Final Loss: 0.4441
๐ฏ Use Cases
Perfect for translating:
โ
RenPy/Ren'Py visual novels
โ
Gaming interfaces and menus
โ
Character dialogues and stories
โ
Interactive fiction content
โ
Dating simulation games
- Downloads last month
- 14
Inference Providers
NEW
This model isn't deployed by any Inference Provider.
๐
Ask for provider support
Model tree for virusf/nllb-renpy
Base model
facebook/nllb-200-distilled-600M