Text Generation
PEFT
Safetensors
English
Thai
lora
uncensored
qwen3.6
weight-diff
svd
Mixture of Experts
adapter
Instructions to use hotdogs/qwen3.6-35b-heretic-uncensored-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use hotdogs/qwen3.6-35b-heretic-uncensored-lora with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3.6-35B-A3B") model = PeftModel.from_pretrained(base_model, "hotdogs/qwen3.6-35b-heretic-uncensored-lora") - Notebooks
- Google Colab
- Kaggle
| { | |
| "base_model_name_or_path": "Qwen/Qwen3.6-35B-A3B", | |
| "bias": "none", | |
| "inference_mode": true, | |
| "lora_alpha": 32, | |
| "lora_dropout": 0.0, | |
| "peft_type": "LORA", | |
| "r": 16, | |
| "target_modules": "all", | |
| "task_type": "CAUSAL_LM" | |
| } |