WMT25-en-ja
Collection
3 items
โข
Updated
This is another sentence-based English-to-Japanese translation model fine-tuned from utter-project/EuroLLM-9B.
Training data: WMT2025 en-ja parallel corpus
import transformers
import torch
model_id = "Systran/EuroLLM-9B-sft-ft-wmt25-en-ja"
pipeline = transformers.pipeline(
"text-generation",
model=model_id,
model_kwargs={"torch_dtype": torch.bfloat16},
device_map="auto",
)
messages = "Please translate the following English text into Japanese.\nInput: Hello World!\nOutput: "
outputs = pipeline(
messages,
max_new_tokens=256,
)
print(outputs[0]["generated_text"][len(messages):].split("\n")[0])
Base model
utter-project/EuroLLM-9B