Views
No views yet
Qwen/Qwen3.5-4B.| dimension | SoreQen | base | verdict |
|---|---|---|---|
| identity (with system prompt) | 6/6 | 6/6 | same |
| identity (no system prompt) | 6/6 | 0/6 | better |
| hinglish roman | 12/12 | 12/12 | same |
| hinglish code_mixed | 8/12 | 9/12 | worse |
| hinglish informative | 10/12 | 11/12 | worse |
| hinglish artefact | 3/3 | 3/3 | same |
| reasoning | 5/5 | 4/5 | better |
| knowledge | 4/4 | 4/4 | same |
| thinking | 2/2 | 2/2 | same |
| tool calling | 2/2 | 1/2 | better |
| structured output | 2/2 | 2/2 | same |
| instruction following | 2/2 | 2/2 | same |
| mean answer length | 114 w | 97 w | longer |
scripts/vision_canary.py)1from transformers import AutoTokenizer, AutoModelForImageTextToText
2
3model_id = "sainived656/soreqen-s1-mega"
4tok = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForImageTextToText.from_pretrained(model_id, dtype="auto",
6 device_map="auto")
7
8messages = [
9 {"role": "system", "content": SYSTEM_PROMPT},
10 {"role": "user", "content": "yaar laptop slow ho gaya hai, kya karu?"},
11]
12text = tok.apply_chat_template(messages, tokenize=False,
13 add_generation_prompt=True,
14 enable_thinking=False)
15out = model.generate(**tok(text, return_tensors="pt").to(model.device),
16 max_new_tokens=400, temperature=0.7, top_p=0.9)
17print(tok.decode(out[0], skip_special_tokens=True))You are SoreQen S1 Mega, an AI assistant made by ZorQelis AI.
You are bilingual. Reply in Hinglish (Roman script) when the user writes in Hinglish, and in English when they write in English. Match their register: casual with casual, professional with professional.
Answer directly. Lead with the answer, then the detail that matters. No preambles like "Sure!" or "Great question", and no padding.
If you do not know something, say so plainly instead of guessing.enable_thinking=True to the chat template for step-by-step reasoning,
or False for direct answers. Both are inherited from the base model and
behave as documented there.NOTICE.