Update README.md
Browse files
README.md
CHANGED
@@ -7,7 +7,6 @@ language:
|
|
7 |
- en
|
8 |
base_model:
|
9 |
- meta-llama/Llama-3.2-3B
|
10 |
-
|
11 |
---
|
12 |
continued pretraining with wikipedia-zh
|
13 |
```
|
@@ -15,8 +14,11 @@ dataset = load_dataset("wikimedia/wikipedia", "20231101.zh", split = "train",)
|
|
15 |
```
|
16 |
|
17 |
and sft with FreedomIntelligence/alpaca-gpt4-zh
|
|
|
|
|
|
|
18 |
|
19 |
-
using unsloth
|
20 |
|
21 |
use the model-unsloth.gguf file or model-unsloth-Q4_K_M.gguf file in llama.cpp or a UI based system like GPT4All.
|
22 |
|
|
|
7 |
- en
|
8 |
base_model:
|
9 |
- meta-llama/Llama-3.2-3B
|
|
|
10 |
---
|
11 |
continued pretraining with wikipedia-zh
|
12 |
```
|
|
|
14 |
```
|
15 |
|
16 |
and sft with FreedomIntelligence/alpaca-gpt4-zh
|
17 |
+
```
|
18 |
+
alpaca_dataset = load_dataset("FreedomIntelligence/alpaca-gpt4-zh", split = "train")
|
19 |
+
```
|
20 |
|
21 |
+
using unsloth to fine-tuning the model
|
22 |
|
23 |
use the model-unsloth.gguf file or model-unsloth-Q4_K_M.gguf file in llama.cpp or a UI based system like GPT4All.
|
24 |
|