Text Generation
PEFT
Safetensors
llama
grpo
reinforcement-learning
devops
incident-response
openenv
unsloth
conversational
Instructions to use Arijit-07/aria-devops-llama8b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Arijit-07/aria-devops-llama8b with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Unsloth Studio
How to use Arijit-07/aria-devops-llama8b 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 Arijit-07/aria-devops-llama8b 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 Arijit-07/aria-devops-llama8b to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Arijit-07/aria-devops-llama8b to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="Arijit-07/aria-devops-llama8b", max_seq_length=2048, )
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,21 +1,41 @@
|
|
| 1 |
---
|
| 2 |
-
base_model: unsloth/
|
|
|
|
|
|
|
| 3 |
tags:
|
| 4 |
-
-
|
| 5 |
-
-
|
|
|
|
|
|
|
|
|
|
| 6 |
- unsloth
|
| 7 |
-
- llama
|
| 8 |
-
license: apache-2.0
|
| 9 |
-
language:
|
| 10 |
-
- en
|
| 11 |
---
|
| 12 |
|
| 13 |
-
#
|
|
|
|
| 14 |
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
- **Finetuned from model :** unsloth/meta-llama-3.1-8b-instruct-unsloth-bnb-4bit
|
| 18 |
|
| 19 |
-
|
| 20 |
|
| 21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model: unsloth/Meta-Llama-3.1-8B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
tags:
|
| 6 |
+
- grpo
|
| 7 |
+
- reinforcement-learning
|
| 8 |
+
- devops
|
| 9 |
+
- incident-response
|
| 10 |
+
- openenv
|
| 11 |
- unsloth
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
+
# ARIA — DevOps Incident Response Agent
|
| 15 |
+
### Llama-3.1-8B fine-tuned with GRPO
|
| 16 |
|
| 17 |
+
Trained on the [ARIA DevOps Incident Response](https://huggingface.co/spaces/Arijit-07/devops-incident-response)
|
| 18 |
+
live RL environment using GRPO.
|
|
|
|
| 19 |
|
| 20 |
+
## Training Results
|
| 21 |
|
| 22 |
+
| Task | Baseline | Fine-tuned | Improvement |
|
| 23 |
+
|---|---|---|---|
|
| 24 |
+
| easy | 0.320 | 0.685 | **+0.365** |
|
| 25 |
+
| medium | 0.050 | 0.378 | **+0.328** |
|
| 26 |
+
| hard | 0.190 | 0.869 | **+0.679** |
|
| 27 |
+
| bonus | 0.152 | 0.682 | **+0.530** |
|
| 28 |
+
|
| 29 |
+

|
| 30 |
+
|
| 31 |
+
## Setup
|
| 32 |
+
- Algorithm: GRPO
|
| 33 |
+
- Base: Llama-3.1-8B-Instruct
|
| 34 |
+
- LoRA rank: 32, alpha: 64
|
| 35 |
+
- Episodes: 160 (40 per task)
|
| 36 |
+
- GPU: NVIDIA L4, 162 minutes
|
| 37 |
+
- Framework: Unsloth + HuggingFace TRL
|
| 38 |
+
|
| 39 |
+
## Links
|
| 40 |
+
- Environment: https://huggingface.co/spaces/Arijit-07/devops-incident-response
|
| 41 |
+
- GitHub: https://github.com/Twilight-13/devops-incident-response
|