deepseek-ai/DeepSeek-V4-Flash-0731
Text Generation โข 304B โข Updated โข 15.4k โข โข 1.48k
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")