Downloads · 30 days
4
8% of all-time downloads
Thimphou/MNLP_M2_mcqa_model
MNLP_M2_mcqa_model is a text generation model from Thimphou. Use it when you need the model to write or continue text. The card lists the license as apache-2.0.
This model is a fine-tuned version of Qwen/Qwen3-0.6B-Base for Multiple Choice Question Answering (MCQA) tasks.
Downloads · 30 days
4
8% of all-time downloads
All-time downloads
53
Public
Parameters
596M
2.4 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors2.4 GB · 99%
From the Hugging Face model README
This model is a fine-tuned version of Qwen/Qwen3-0.6B-Base for Multiple Choice Question Answering (MCQA) tasks.
| Metric | Baseline | Fine-tuned | Improvement |
|---|---|---|---|
| Accuracy | 68.50% | 71.70% | +3.20% |
The model was fine-tuned on a custom MCQA dataset with the following characteristics:
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("MNLP_M2_mcqa_model", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained("MNLP_M2_mcqa_model", trust_remote_code=True)
# For MCQA tasks, provide the question and options, then generate the answer
prompt = "Question: What is the capital of France?\nA) London\nB) Berlin\nC) Paris\nD) Madrid\nAnswer:"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=5)
answer = tokenizer.decode(outputs[0], skip_special_tokens=True)