MCQ BiLSTM Model
Bidirectional LSTM model for multiple choice question answering. Predicts top 3 most likely answers ranked by confidence.
Model Details
- Architecture : BiLSTM with attention pooling
- Hidden dim : 256
- Layers : 2 bidirectional
- Metric : MAP@3
How to Use
from huggingface_hub import hf_hub_download
import torch
path = hf_hub_download(
repo_id = "Seeyou200/mcq-bilstm-model",
filename = "best_lstm_model.pt"
)
checkpoint = torch.load(path, weights_only=False)