MCQ model
Collection
Tạo câu hỏi trắc nghiệm
•
8 items
•
Updated
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "beyoru/MCQ-qv-8"
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype="auto",
device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained(model_name)
messages = [
{"role": "system", "content": "Bạn là một trợ lý thông minh có thể tạo câu hỏi trắc nghiệm trong mọi ngữ cảnh"},
{"role": "user", "content": "<YOUR CONTEXT>"}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
generated_ids = model.generate(
**model_inputs,
do_sample=True
)
generated_ids = [
output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
]
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
Commit directly to the main branch Open as a pull request to the main branch Commit changes Update README.md Add an extended description... Upload images, audio, and videos by dragging in the text input, pasting, or clicking here.