Denizhaan/imdb-roberta-lora-v2
06
RoBERTa-base + LoRA — IMDB Sentiment Classification
LoRA-adapted roberta-base for binary sentiment classification on the IMDB Large Movie Review Dataset. One of four base models in a parameter-efficient stacking ensemble described in "Parameter-Efficient Fine-Tuning Ensembles for Sentiment Analysis" (IDAP 2026).
Results (25,000-example IMDB test set)
LoRA Configuration
Loading
from transformers import RobertaTokenizer, RobertaForSequenceClassification
from peft import PeftModel
tokenizer = RobertaTokenizer.from_pretrained("roberta-base")
base = RobertaForSequenceClassification.from_pretrained("roberta-base", num_labels=2)
model = PeftModel.from_pretrained(base, "Denizhaan/imdb-roberta-lora-v2")
model.eval()Citation
If you use this model, please cite our paper (details in the GitHub repository).
Framework versions
- PEFT 0.19.1
