andyburgin
commited on
Commit
•
5e67481
1
Parent(s):
a1e663a
Populate README
Browse files
README.md
CHANGED
@@ -1,3 +1,49 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language: en
|
3 |
+
license: mit
|
4 |
+
tags:
|
5 |
+
- text-generation-inference
|
6 |
+
- transformers
|
7 |
+
- Phi3
|
8 |
+
- kubernetes
|
9 |
+
base_model: unsloth/Phi-3-mini-4k-instruct
|
10 |
+
datasets:
|
11 |
+
- andyburgin/kubefix
|
12 |
+
---
|
13 |
+
|
14 |
+
# Phi-3-mini-4k-instruct-kubefix-v0.1-gguf: Fine-Tuned Phi3 for Kubernetes fault resolution
|
15 |
+
|
16 |
+
The purpose of this model is for use with [K8sGPT](https://k8sgpt.ai/) for fault analysis and resolution. Ultimately the resulting LLM is intended to be self-hosted in a GPU free environment running under [local-ai](https://localai.io/basics/kubernetes/) in Kubernetes.
|
17 |
+
|
18 |
+
The model was finetuned on [andyburgin/kubefix](https://huggingface.co/datasets/andyburgin/kubefix) which contains a series of Question and Answer pairs generated from a subset of the Kubernetes documentation from the [English markdown files](https://github.com/kubernetes/website/tree/main/content/en/docs). The Q&A pairs have been generated from the documents using an opensource model (to avoid licencing issues for some free models or SaasS services) - after much trial and error the [openchat-3.5-0106](https://huggingface.co/TheBloke/openchat-3.5-0106-GGUF) model was found to be the least problematic.
|
19 |
+
|
20 |
+
For a detailed description of the method used to generate the [andyburgin/kubefix](https://huggingface.co/datasets/andyburgin/kubefix) dataset and this model please see the [kubefix-llm repo](https://github.com/andyburgin/kubefix-llm).
|
21 |
+
|
22 |
+
**Model & Development**
|
23 |
+
|
24 |
+
- **Developed by:** andyburgin
|
25 |
+
- **License:** mit
|
26 |
+
- **Finetuned from model:** unsloth/Phi-3-mini-4k-instruct
|
27 |
+
|
28 |
+
**Key Features**
|
29 |
+
|
30 |
+
- **Kubernetes Focus:** Optimised for fault analysis for Kubernetes clusters with [K8sGPT](https://k8sgpt.ai/).
|
31 |
+
- **Knowledge Base:** Trained on a genrateed dataset from a subset of the Kubernetes documentation.
|
32 |
+
- **Text Generation:** Generates informative and potentially helpful responses.
|
33 |
+
|
34 |
+
**Important Note**
|
35 |
+
|
36 |
+
This model and dataset are under development and v0.1 is the very first release and is likely to need much optimisation and development.
|
37 |
+
|
38 |
+
**License**
|
39 |
+
|
40 |
+
This model is distributed under the MIT License
|
41 |
+
|
42 |
+
**Contributing**
|
43 |
+
|
44 |
+
Contributions are welcome to this repository! If you have improvements or suggestions, feel free to create a pull request.
|
45 |
+
|
46 |
+
**Disclaimer**
|
47 |
+
|
48 |
+
Please note - the dataset and resultant model should be considered highly experimental and used with caution, use at your own risk.
|
49 |
+
```
|