Instructions to use MihaiPopa-1/OmniTranslate-1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MihaiPopa-1/OmniTranslate-1.0 with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="MihaiPopa-1/OmniTranslate-1.0")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("MihaiPopa-1/OmniTranslate-1.0") model = AutoModelForCausalLM.from_pretrained("MihaiPopa-1/OmniTranslate-1.0") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Unsloth Studio new
How to use MihaiPopa-1/OmniTranslate-1.0 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for MihaiPopa-1/OmniTranslate-1.0 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for MihaiPopa-1/OmniTranslate-1.0 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for MihaiPopa-1/OmniTranslate-1.0 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="MihaiPopa-1/OmniTranslate-1.0", max_seq_length=2048, )
OmniTranslate 1.0
OmniTranslate is a massively multilingual machine translation model supporting over 500 languages. Fine-tuned from Qwen 3 0.6B (with Unsloth), this model is designed for translation tasks on any device!
Features
- 500+ Languages Supported: The broadest coverage of languages supported for a translation model that's under 1 billion parameters!
- Tiny Size: Beats any other large model on speed and memory usage. No other model is able to compete with this!
Issues
- Accuracy on Common Languages: Accuracy on common languages in the dataset (like Spanish, Chinese, Romanian) is generally very good! Sometimes there's a chance that OmniTranslate can make hiccups. Examples are
roșăandamiwhen translating to Romanian. - Accuracy on Rare Languages: Accuracy on rare languages in the dataset (like Toki Pona) isn't as good as on common languages!
As it follows, OmniTranslate 1.0 is a experimental model and shouldn't be used for tasks where accurate translations matter.
Notes
Providing the ISO code instead of the language name can improve the results a lot.
Usage
Code is by Gemini 3 Flash (then some little modifications by myself):
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
# 1. Load from your Hugging Face Repo
model_id = "MihaiPopa-1/OmniTranslate-1.0"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype=torch.float32, # Standard for CPU
device_map="cpu" # Forces CPU usage
)
# 2. Translate (replace ron_Latn with your language here)
prompt = "<|im_start|>user\nTranslate to ron_Latn: OmniTranslate is a massively multilingual machine translation model supporting over 500 languages!<|im_end|>\n<|im_start|>assistant\n<think>\n"
inputs = tokenizer(prompt, return_tensors="pt").to("cpu")
with torch.no_grad():
outputs = model.generate(**inputs, max_new_tokens=256, temperature=0.1)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Data Used
I used my own OmniSurgical 1.0, which the dataset itself is a extract of HF's FineTranslations.
120 sentences per language (60 per language pair).
Uploaded finetuned model
- Developed by: MihaiPopa-1
- License: apache-2.0
- Finetuned from model : unsloth/qwen3-0.6b-unsloth-bnb-4bit
This qwen3 model was trained 2x faster with Unsloth and Huggingface's TRL library.
- Downloads last month
- 20
Model tree for MihaiPopa-1/OmniTranslate-1.0
Base model
Qwen/Qwen3-0.6B-Base