This repository contains a fine-tuned RoBERTa model for Multiple Choice Question Answering (MCQA). The model was developed as part of the IIT Madras BS Degree - Deep Learning and Generative AI Project.
The final predictions are generated using a weighted ensemble of these models, while this repository contains the fine-tuned RoBERTa model used in the ensemble.
RoBERTa is the strongest individual deep learning model used in the ensemble.
1from transformers import AutoTokenizer, AutoModelForSequenceClassification
2
3tokenizer = AutoTokenizer.from_pretrained("Arshavk/dl-genai-project")
4model = AutoModelForSequenceClassification.from_pretrained("Arshavk/dl-genai-project")