moonshotai/Kimi-K3
Image-Text-to-Text โข 2.8T โข Updated โข 2.85k โข โข 5.9k
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")