Views
No views yet

Qwen3.6-35B-A3B-Uncensored-Aggressive is an optimized release built on top of huihui-ai/Huihui-Qwen3.6-35B-A3B-abliterated. This version focuses on updated shard sizing, repository optimization, and compatibility improvements for the latest Transformers releases, while preserving the MoE architecture and reasoning behavior of the original model. The result is a high-capacity 35B Mixture-of-Experts language model designed for efficient inference, stable deployment, and modern ecosystem integration.
[!IMPORTANT] This model is intended for research and learning purposes only. Any content generated by this model is used at the user's own risk. The authors and hosting page disclaim any liability for outputs produced by this model. Users are responsible for ensuring safe, ethical, and lawful usage.
| Metric | Result |
|---|---|
| Refusal Rate | N/A |
| Test Setup | N/A |
| Inference Type | text-generation |
| Dataset | N/A |
1pip install transformers==5.2.0
2# or
3pip install git+https://github.com/huggingface/transformers.git1from transformers import Qwen3_5MoeForConditionalGeneration, AutoProcessor
2import torch
3
4model = Qwen3_5MoeForConditionalGeneration.from_pretrained(
5 "prithivMLmods/Qwen3.6-35B-A3B-Uncensored-Aggressive",
6 torch_dtype="auto",
7 device_map="auto"
8)
9
10processor = AutoProcessor.from_pretrained(
11 "prithivMLmods/Qwen3.6-35B-A3B-Uncensored-Aggressive"
12)
13
14messages = [
15 {
16 "role": "user",
17 "content": [
18 {"type": "text", "text": "Explain how transformer models work in simple terms."}
19 ],
20 }
21]
22
23text = processor.apply_chat_template(
24 messages,
25 tokenize=False,
26 add_generation_prompt=True
27)
28
29inputs = processor(
30 text=[text],
31 padding=True,
32 return_tensors="pt"
33).to("cuda")
34
35generated_ids = model.generate(**inputs, max_new_tokens=256)
36
37generated_ids_trimmed = [
38 out_ids[len(in_ids):] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
39]
40
41output_text = processor.batch_decode(
42 generated_ids_trimmed,
43 skip_special_tokens=True,
44 clean_up_tokenization_spaces=False
45)
46
47print(output_text)Important Note: This model inherits the behavior and limitations of its base model.