Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,4 +1,21 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
Fine-tuned version of [TinyLlama-1.1B-Chat-v1.0](https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0) on a custom dataset of CLI-related Q&A using LoRA (Low-Rank Adaptation).
|
4 |
|
@@ -11,7 +28,7 @@ Fine-tuned version of [TinyLlama-1.1B-Chat-v1.0](https://huggingface.co/TinyLlam
|
|
11 |
|
12 |
---
|
13 |
|
14 |
-
##
|
15 |
- Custom-made with **150+ Q&A** pairs on:
|
16 |
- `git`, `bash`, `grep`, `tar`, `venv`
|
17 |
- Stored in: `cli_questions.json`
|
@@ -19,7 +36,7 @@ Fine-tuned version of [TinyLlama-1.1B-Chat-v1.0](https://huggingface.co/TinyLlam
|
|
19 |
|
20 |
---
|
21 |
|
22 |
-
##
|
23 |
```python
|
24 |
base_model = "TinyLlama/TinyLlama-1.1B-Chat-v1.0"
|
25 |
|
@@ -30,3 +47,4 @@ lora_config = LoraConfig(
|
|
30 |
bias="none",
|
31 |
task_type="CAUSAL_LM"
|
32 |
)
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
tags:
|
4 |
+
- lora
|
5 |
+
- tinyllama
|
6 |
+
- cli
|
7 |
+
- fine-tuning
|
8 |
+
- qna
|
9 |
+
- huggingface
|
10 |
+
model_name: cli-lora-tinyllama
|
11 |
+
base_model: TinyLlama/TinyLlama-1.1B-Chat-v1.0
|
12 |
+
datasets:
|
13 |
+
- custom-cli-qa
|
14 |
+
library_name: transformers
|
15 |
+
pipeline_tag: text-generation
|
16 |
+
---
|
17 |
+
|
18 |
+
# CLI LoRA-TinyLlama
|
19 |
|
20 |
Fine-tuned version of [TinyLlama-1.1B-Chat-v1.0](https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0) on a custom dataset of CLI-related Q&A using LoRA (Low-Rank Adaptation).
|
21 |
|
|
|
28 |
|
29 |
---
|
30 |
|
31 |
+
## Dataset
|
32 |
- Custom-made with **150+ Q&A** pairs on:
|
33 |
- `git`, `bash`, `grep`, `tar`, `venv`
|
34 |
- Stored in: `cli_questions.json`
|
|
|
36 |
|
37 |
---
|
38 |
|
39 |
+
## Fine-Tuning Configuration
|
40 |
```python
|
41 |
base_model = "TinyLlama/TinyLlama-1.1B-Chat-v1.0"
|
42 |
|
|
|
47 |
bias="none",
|
48 |
task_type="CAUSAL_LM"
|
49 |
)
|
50 |
+
|