Views
No views yet
qwen35b-espanol-abl-merged-v2 (Qwen3.5 35B-A3B abliterated multimodal).Qwen3_5MoeForConditionalGeneration).model_type: qwen3_5_moearchitectures: ["Qwen3_5MoeForConditionalGeneration"]vision_config y tokens de imagen/video.1from transformers import AutoModelForConditionalGeneration, AutoTokenizer
2model = AutoModelForConditionalGeneration.from_pretrained(
3 "jpalmae/qwen35b-espanol-abl-merged-v3",
4 torch_dtype="bfloat16",
5 device_map="auto",
6 trust_remote_code=True,
7)
8tokenizer = AutoTokenizer.from_pretrained(
9 "jpalmae/qwen35b-espanol-abl-merged-v3",
10 trust_remote_code=True,
11)