Phi-3-mini fine-tuned on 300 Kubernetes Q&A samples from Stack Overflow using QLoRA. Built as part of an end-to-end Local Research Assistant pipeline. See the
project repo for full context, including dataset preparation, evaluation results, inference server, and CI/CD setup.
The Q8_0 quantization was benchmarked during development (see eval section below) but is not hosted here to keep the repo small. The Q4_K_M is the deployment-recommended variant: ~3.7× faster throughput at the same VRAM ceiling.
Q4_K_M is ~3.7× faster at the same VRAM ceiling — chosen as the deployment default.
1wget https://huggingface.co/shlbnrj/phi3-kubernetes/resolve/main/phi3-kubernetes-q4_k_m.gguf
2
3cat > Modelfile <<'EOF'
4FROM ./phi3-kubernetes-q4_k_m.gguf
5PARAMETER temperature 0.4
6PARAMETER num_ctx 4096
7EOF
8
9ollama create phi3-kubernetes -f Modelfile
10ollama run phi3-kubernetes "What is a Pod?"
MIT. The base model (Phi-3) is under the
Microsoft Research License.
This is a small (3.8B parameter) model. It works well for direct K8s knowledge questions but is unreliable for multi-step tool-use scenarios (e.g., chaining a search with a Python computation). See the project's NOTES.md for detailed failure-mode analysis.