Qwen3.5-2B-SFT-AutoConv-InstagramChat-Smart
1
—
by
leonard-milo
Language Model
OTHER
2B params
New
0 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
5GB+ RAM
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Device Compatibility
Mobile
4-6GB RAM
Laptop
16GB RAM
Server
GPU
Minimum Recommended
2GB+ RAM
Code Examples
How to Get Started with the Modelpythontransformers
from transformers import AutoModelForCausalLM, AutoTokenizer, TextStreamer
MODEL_NAME = "leonard-milo/Qwen3.5-2B-SFT-AutoConv-InstagramChat-Smart"
tok = AutoTokenizer.from_pretrained(MODEL_NAME, device_map="auto")
model = AutoModelForCausalLM.from_pretrained(MODEL_NAME, device_map="auto")
messages = [
{"role": "user", "content": "User message"},
]
tokenized_chat = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True, return_tensors="pt")
inputs = tok(tokenized_chat, return_tensors="pt")
streamer = TextStreamer(tok)
_ = model.generate(**inputs, streamer=streamer)Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.