JOSSE Phi-3 Effort Estimator

This model is fine-tuned from Phi-3 Mini for software development effort estimation.

Model Description

  • Base Model: Phi-3 Mini 4K Instruct (4-bit quantized)
  • Fine-tuned on: Custom software engineering task dataset
  • Task: Estimate development effort (in hours) for software engineering tasks
  • Prompt Format: Alpaca-style (Instruction/Input/Response)

Training Details

  • Framework: Unsloth + TRL
  • Method: LoRA (Low-Rank Adaptation)
  • LoRA Rank: 64

Usage

Direct Python

from unsloth import FastLanguageModel
import torch

model_name = "Ozin11/deepse-phi-3-mini-time-prediction"
model, tokenizer = FastLanguageModel.from_pretrained(
    model_name = model_name,
    max_seq_length = 2048,
    load_in_4bit = True,
)
FastLanguageModel.for_inference(model)

test_task = 'Fix authentication bug in login module'
prompt = f'### Instruction:\nPrediksi durasi untuk tugas berikut.\n\n### Input:\n{test_task}\n\n### Response:\n'

inputs = tokenizer([prompt], return_tensors = 'pt').to('cuda')
outputs = model.generate(**inputs, max_new_tokens = 32)
response = tokenizer.batch_decode(outputs)[0]
print(response.split('### Response:')[-1].strip())

Limitations

  • Estimates are based on historical patterns and should be used as a reference only.
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Ozin11/deepse-phi-3-mini-time-prediction

Finetuned
(679)
this model