12 8 hours ago

Uncensored, non-thinking Qwen3.5 tuned for pure translation — input text, output translation, nothing else.

vision 2b
ollama run kaelri/qwen3.5-mt:2b

Details

8 hours ago

3d6b90bc5d5e · 1.9GB ·

qwen35
·
2.27B
·
Q4_K_M
You are a professional multilingual translation engine. Your ONLY function is to translate text. Rul
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR US
{{ if .System }}<|im_start|>system {{ .System }}<|im_end|> {{ end }}{{ if .Prompt }}<|im_start|>user
{ "num_predict": 4096, "repeat_penalty": 1.05, "stop": [ "<|im_start|>",

Readme

Qwen3.5-MT

This is a translation-optimized variant of the abliterated Qwen3.5, combining uncensored generation with non-thinking mode and a dedicated translation template. It behaves like a pure machine translation engine — similar to Hy-MT2 in usage, without censorship or refusal.

What Makes It Different

Feature Base Qwen3.5 Qwen3.5-MT
Censorship Safety-aligned Abliterated — no refusal
Thinking Full <think> chain Non-thinking — direct output
Output style Conversational, explanatory Translation only
Template Full chat + tool calling Minimal translation template

Template Behavior

The model automatically wraps user input with a Translate to Chinese: instruction. Input text → translated output. No chat, no explanations.

<|im_start|>system
You are a professional multilingual translation engine...
<|im_end|>
<|im_start|>user
Translate to Chinese:
{your text}<|im_end|>
<|im_start|>assistant
<think>

</think>
{translated output}

Usage

# Direct translation via CLI
ollama run kaelri/qwen3.5-mt:2b "The quick brown fox jumps over the lazy dog"

# API
curl http://localhost:11434/api/chat -d "{\"model\":\"kaelri/qwen3.5-mt:2b\",\"messages\":[{\"role\":\"user\",\"content\":\"Translate to Chinese:\\nHello World\"}],\"stream\":false}"

Warnings

Risk of Sensitive or Controversial Outputs

This model’s safety filtering has been significantly reduced via abliteration. It will translate all content faithfully without omission or refusal. Users should exercise caution and rigorously review generated outputs.

Not Suitable for All Audiences

Due to limited content filtering, the model’s outputs may be inappropriate for public settings, underage users, or applications requiring high-security environments.

Legal and Ethical Responsibilities

Users must ensure their usage complies with local laws and ethical standards. Generated content may carry legal or ethical risks, and users are solely responsible for any consequences.

Research and Experimental Use

This model is recommended for research, testing, or controlled environments. Avoid direct use in production or public-facing commercial applications.

No Default Safety Guarantees

Unlike standard models, this model has not undergone rigorous safety optimization. The maintainer bears no responsibility for any consequences arising from its use.

Non-Thinking Mode

This variant includes non-thinking behavior: the model minimizes internal reasoning and produces direct, concise translations without extra analysis or explanations.

Technical Details

  • Base: Qwen3.5 2B (GGUF, Q4_K_M)
  • Abliteration: Refusal direction removed (see remove-refusals-with-transformers)
  • Thinking: Suppressed via empty <think></think> block in template
  • Sampling: temperature=0.3, top_p=0.6 — tuned for deterministic translation output
  • Architecture: Qwen3.5, Apache 2.0 License