LLAMAPIE: Proactive In-Ear Conversation Assistants
Paper
•
2505.04066
•
Published
•
4
pip install git+https://github.com/Codys12/transformers.git
from 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")