LLAMA 3 Story Point Estimator - bamboo

This model is fine-tuned on issue descriptions from bamboo and tested on bamboo for story point estimation.

Model Details

  • Base Model: LLAMA 3.2 1B

  • Training Project: bamboo

  • Test Project: bamboo

  • Task: Story Point Estimation (Regression)

  • Architecture: PEFT (LoRA)

  • Tokenizer: SP Word Level

  • Input: Issue titles

  • Output: Story point estimation (continuous value)

Usage

from transformers import AutoModelForSequenceClassification
from peft import PeftConfig, PeftModel
from tokenizers import Tokenizer

# Load peft config model
config = PeftConfig.from_pretrained("DEVCamiloSepulveda/2-LLAMA3SP-bamboo")

# Load tokenizer and model
tokenizer = Tokenizer.from_pretrained("DEVCamiloSepulveda/2-LLAMA3SP-bamboo")
base_model = AutoModelForSequenceClassification.from_pretrained(
    config.base_model_name_or_path,
    num_labels=1,
    torch_dtype=torch.float16,
    device_map='auto'
)
model = PeftModel.from_pretrained(base_model, "DEVCamiloSepulveda/2-LLAMA3SP-bamboo")

# 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: 2 / 20 epochs
  • Batch size: 32
  • Training time: 45.160 seconds
  • Mean Absolute Error (MAE): 1.683
  • Median Absolute Error (MdAE): 1.788

Framework versions

  • PEFT 0.14.0
Downloads last month
0
Inference Providers NEW
This model is not currently available via any of the supported third-party Inference Providers, and the HF Inference API does not support peft models with pipeline type text-classification

Model tree for DEVCamiloSepulveda/2-LLAMA3SP-bamboo

Adapter
(248)
this model

Evaluation results