LLAMA 3 Story Point Estimator - clover - usergrid
This model is fine-tuned on issue descriptions from clover and tested on usergrid for story point estimation.
Model Details
Base Model: LLAMA 3.2 1B
Training Project: clover
Test Project: usergrid
Task: Story Point Estimation (Regression)
Architecture: PEFT (LoRA)
Input: Issue titles
Output: Story point estimation (continuous value)
Usage
from transformers import AutoModelForSequenceClassification, AutoTokenizer
from peft import PeftModel
# Load tokenizer and model
tokenizer = AutoTokenizer.from_pretrained("DEVCamiloSepulveda/000-LLAMA3SP-clover-usergrid")
model = AutoModelForSequenceClassification.from_pretrained("DEVCamiloSepulveda/000-LLAMA3SP-clover-usergrid")
# Prepare input text
text = "Your issue description here"
inputs = tokenizer(text, return_tensors="pt", truncation=True, max_length=20, padding="max_length")
# Get prediction
outputs = model(**inputs)
story_points = outputs.logits.item()
Training Details
- Fine-tuning method: LoRA (Low-Rank Adaptation)
- Sequence length: 20 tokens
- Best training epoch: 7 / 20 epochs
- Batch size: 32
- Training time: 140.233 seconds
- Mean Absolute Error (MAE): 1.343
- Median Absolute Error (MdAE): 1.099
- Downloads last month
- 2
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.
Model tree for DEVCamiloSepulveda/000-LLAMA3SP-clover-usergrid
Base model
meta-llama/Llama-3.2-1BEvaluation results
- Mean Absolute Error (MAE) on usergrid Datasettest set self-reported1.343
- Median Absolute Error (MdAE) on usergrid Datasettest set self-reported1.099