Views
No views yet

GGUF quantizations available at DJLougen/Ornstein3.6-35B-A3B-GGUF — Q8_0 down through aggressive 2-bit I-quants, all with imatrix calibration.
Vision/video restoration: The repository now includes the Qwen3.6 base visual tower plus image/video processor files, so the source safetensors checkpoint should load as the multimodal conditional-generation architecture. Existing GGUF artifacts made before this restoration remain text-only until rebuilt.
Qwen3_5MoeForConditionalGeneration — Qwen 3.6 MoE with linear + full attention interleaved (Gated Delta Net)1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "DJLougen/Ornstein3.6-35B-A3B"
4tok = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto", device_map="auto")
6
7messages = [{"role": "user", "content": "Explain mixture-of-experts routing in one paragraph."}]
8inputs = tok.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to(model.device)
9out = model.generate(inputs, max_new_tokens=512)
10print(tok.decode(out[0][inputs.shape[-1]:], skip_special_tokens=True))