Update README.md
Browse files
README.md
CHANGED
|
@@ -1,22 +1,36 @@
|
|
| 1 |
---
|
| 2 |
-
base_model: unsloth/Meta-Llama-3.1-8B-Instruct
|
| 3 |
-
tags:
|
| 4 |
-
- text-generation-inference
|
| 5 |
-
- transformers
|
| 6 |
-
- unsloth
|
| 7 |
-
- llama
|
| 8 |
-
- trl
|
| 9 |
license: apache-2.0
|
| 10 |
language:
|
| 11 |
- en
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
-
|
| 17 |
-
- **License:** apache-2.0
|
| 18 |
-
- **Finetuned from model :** unsloth/Meta-Llama-3.1-8B-Instruct
|
| 19 |
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
+
base_model:
|
| 6 |
+
- meta-llama/Llama-3.1-8B-instruct
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
tags:
|
| 9 |
+
- lora
|
| 10 |
+
- adapter
|
| 11 |
+
- Math
|
| 12 |
+
- CoT
|
| 13 |
---
|
| 14 |
|
| 15 |
+
## Model Details
|
| 16 |
+
- Base Model: meta-llama/Llama-3.1-8B-instruct
|
| 17 |
+
- SFT
|
|
|
|
|
|
|
| 18 |
|
| 19 |
+
## Datasets:
|
| 20 |
+
- 300st random passages human writing
|
| 21 |
+
- 134st customized set (combined synthatic/human writing)
|
| 22 |
+
- 18k MMLU style 1 epoch
|
| 23 |
+
- 5K Math from continuation of llama343
|
| 24 |
|
| 25 |
+
### Source Adapters
|
| 26 |
+
All source adapters share the following configuration:
|
| 27 |
+
- Rank (r): 16
|
| 28 |
+
- Alpha: 16
|
| 29 |
+
- Target Modules:
|
| 30 |
+
- q_proj (Query projection)
|
| 31 |
+
- k_proj (Key projection)
|
| 32 |
+
- v_proj (Value projection)
|
| 33 |
+
- o_proj (Output projection)
|
| 34 |
+
- up_proj (Upsampling projection)
|
| 35 |
+
- down_proj (Downsampling projection)
|
| 36 |
+
- gate_proj (Gate projection)
|