Instructions to use Ozin11/deepse-phi-3-mini-time-prediction with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps Settings
- Unsloth Studio
How to use Ozin11/deepse-phi-3-mini-time-prediction with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Ozin11/deepse-phi-3-mini-time-prediction to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Ozin11/deepse-phi-3-mini-time-prediction to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Ozin11/deepse-phi-3-mini-time-prediction to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="Ozin11/deepse-phi-3-mini-time-prediction", max_seq_length=2048, )
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.
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
Base model
unsloth/Phi-3-mini-4k-instruct-bnb-4bit