# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("aieng-lab/codebert-base_story-points")
model = AutoModelForSequenceClassification.from_pretrained("aieng-lab/codebert-base_story-points")Quick Links
CodeBERT base for estimating story points
This model estimates story points as a numerical value.
- Developed by: Fabian C. Peña, Steffen Herbold
- Finetuned from: microsoft/codebert-base
- Replication kit: https://github.com/aieng-lab/senlp-benchmark
- Language: English
- License: MIT
Citation
@misc{pena2025benchmark,
author = {Fabian Peña and Steffen Herbold},
title = {Evaluating Large Language Models on Non-Code Software Engineering Tasks},
year = {2025}
}
- Downloads last month
- -
Model tree for aieng-lab/codebert-base_story-points
Base model
microsoft/codebert-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="aieng-lab/codebert-base_story-points")