Views
No views yet
| Attribute | Value |
|---|---|
| Base Model | microsoft/Phi-3.5-mini-instruct |
| Parameters | 3.8B |
| Quantization | Q4_K_M (~2.2 GB) |
| Context Length | 2048 tokens |
1# Run directly from HuggingFace (no download needed)
2ollama run hf.co/pramod-thaz/finance-cre-finetuned
3
4# Or pull locally first
5ollama pull pramod-thaz/finance-cre-finetuned
6ollama run finance-cre-finetuned1# Download GGUF and run with llama.cpp
2./llama-cli -m finance-cre-finetuned-v0.1-Q4_K_M.gguf -n 256 --temp 0.31from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "pramod-thaz/finance-cre-finetuned"
4tokenizer = AutoTokenizer.from_pretrained(model_name)
5model = AutoModelForCausalLM.from_pretrained(model_name)| Version | Date | Notes |
|---|---|---|
| v0.1 | April 2026 | Initial release - 658 training pairs |
Fine-tuned Phi-3.5-mini for Commercial Real Estate
https://huggingface.co/pramod-thaz/finance-cre-finetuned