Image-Text-to-Text
Transformers
Safetensors
qwen3_5_moe
vision
Mixture of Experts
conversational
Not-For-All-Audiences
abliterated
heretic
uncensor
hermes-lineage
mtp
coding
tool-calling
reasoning
roleplay
bf16
Instructions to use oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT") model = AutoModelForMultimodalLM.from_pretrained("oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT
- SGLang
How to use oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT with Docker Model Runner:
docker model run hf.co/oktayd/Qwen3.6-35B-v2-MoE-Ablit-Heretic-Uncensor-Hermes-MTP-Vision-FT
| { | |
| "scope": "Inference support only; model weights unchanged", | |
| "unit_tests": "PASS", | |
| "selected_cases": 9, | |
| "tests": [ | |
| { | |
| "id": "MMLU-Pro:001", | |
| "thinking": false, | |
| "completed": true, | |
| "finish_reason": "eos", | |
| "output_tokens": 50, | |
| "seconds": 2.9331285804510117 | |
| }, | |
| { | |
| "id": "HumanEval-Plus:001", | |
| "thinking": false, | |
| "completed": true, | |
| "finish_reason": "eos", | |
| "output_tokens": 233, | |
| "seconds": 10.614582307636738 | |
| }, | |
| { | |
| "id": "MATH-Level-5:002", | |
| "thinking": false, | |
| "completed": true, | |
| "finish_reason": "eos", | |
| "output_tokens": 116, | |
| "seconds": 5.350349590182304 | |
| }, | |
| { | |
| "id": "GSM8K:001", | |
| "thinking": false, | |
| "completed": true, | |
| "finish_reason": "eos", | |
| "output_tokens": 111, | |
| "seconds": 5.108682680875063 | |
| }, | |
| { | |
| "id": "Q36-Hermes-Tool-Format:001", | |
| "thinking": false, | |
| "completed": true, | |
| "finish_reason": "eos", | |
| "output_tokens": 41, | |
| "seconds": 1.973704420030117 | |
| }, | |
| { | |
| "id": "Q36-Output-Integrity:001", | |
| "thinking": false, | |
| "completed": true, | |
| "finish_reason": "eos", | |
| "output_tokens": 2, | |
| "seconds": 0.2203267514705658 | |
| }, | |
| { | |
| "id": "MMLU-Pro:001", | |
| "thinking": true, | |
| "completed": false, | |
| "finish_reason": "repeated_block", | |
| "output_tokens": 432, | |
| "seconds": 19.451829474419355 | |
| }, | |
| { | |
| "id": "HumanEval-Plus:001", | |
| "thinking": true, | |
| "completed": false, | |
| "finish_reason": "time_limit", | |
| "output_tokens": 1005, | |
| "seconds": 45.0059671998024 | |
| }, | |
| { | |
| "id": "MATH-Level-5:002", | |
| "thinking": true, | |
| "completed": false, | |
| "finish_reason": "repeated_block", | |
| "output_tokens": 352, | |
| "seconds": 15.891684971749783 | |
| } | |
| ], | |
| "limitations": "Selected known failures plus regressions; not independent benchmark accuracy; raw diagnostic outputs are kept privately." | |
| } | |