Dedicated Endpoints
Run this model inference on single tenant GPU with unmatched speed and reliability at scale.
Container
Run this model inference with full control and performance in your environment.
Get help setting up a custom Dedicated Endpoints.
Talk with our engineer to get a quote for reserved GPU instances with discounts.
README
License: apache-2.0English to Hinglish
python
from transformers import AutoModelForCausalLM, AutoTokenizerimport torch# 1. Load from your Hugging Face Repomodel_id = "MihaiPopa-1/Qwen3-0.6B-English-Hinglish-Preview-LoRA"tokenizer = AutoTokenizer.from_pretrained(model_id)model = AutoModelForCausalLM.from_pretrained(model_id,torch_dtype=torch.float32, # Standard for CPUdevice_map="cpu" # Forces CPU usage)# 2. Translate (replace ron_Latn with your language here)prompt = "<|im_start|>user\nTranslate English to Hinglish: Hello, how are you doing?<|im_end|>\n<|im_start|>assistant\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))
Hinglish to English
python
from transformers import AutoModelForCausalLM, AutoTokenizerimport torch# 1. Load from your Hugging Face Repomodel_id = "MihaiPopa-1/Qwen3-0.6B-English-Hinglish-Preview-LoRA"tokenizer = AutoTokenizer.from_pretrained(model_id)model = AutoModelForCausalLM.from_pretrained(model_id,torch_dtype=torch.float32, # Standard for CPUdevice_map="cpu" # Forces CPU usage)# 2. Translate (replace ron_Latn with your language here)prompt = "<|im_start|>user\nTranslate Hinglish to English: Hello, tum kaise ho?<|im_end|>\n<|im_start|>assistant\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 CMU's Hinglish Dog for this model (yes, really)!
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.
Model provider
MihaiPopa-1
Model tree
Base
Qwen/Qwen3-0.6B
Adapter
this model
Modalities
Input
Text
Output
Text
Pricing
Dedicated Endpoints
View detailsSupported Functionality
Model APIs
Dedicated Endpoints
Container
More information