๐ŸŽฎ 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
Safetensors
Model size
615M params
Tensor type
F32
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for virusf/nllb-renpy

Finetuned
(177)
this model