Qwen/Qwen3.8-27B
Image-Text-to-Text โข 28B โข Updated โข 666k โข โข 11.1k
pip install git+https://github.com/Codys12/transformers.gitfrom transformers import (AutoModelForCausalLM, AutoTokenizer)
model_id = "codys12/bitnet-r1-qwen-32b"
model = AutoModelForCausalLM.from_pretrained(
model_id,
device_map="cuda",
)
tokenizer = AutoTokenizer.from_pretrained(model_id, padding_side="left")