Commit
·
1c5e97a
1
Parent(s):
89a6508
Update README.md
Browse files
README.md
CHANGED
@@ -9,6 +9,8 @@ tags:
|
|
9 |
---
|
10 |
**Please read me! To use the GGUF from this repo, please use latest llama.cpp with pr [#4283](https://github.com/ggerganov/llama.cpp/pull/4283) merged.**
|
11 |
|
|
|
|
|
12 |
# Uncensored, white-labeled... Compatible with Meta LLaMA 2.
|
13 |
|
14 |
This is **not in Qwen Format**, but in **LLaMA format**.
|
@@ -17,4 +19,16 @@ This is not **Qwen GGUF** but **LLaMAfied Qwen Chat Uncensored GGUF**
|
|
17 |
|
18 |
[https://huggingface.co/CausalLM/72B-preview](https://huggingface.co/CausalLM/72B-preview)
|
19 |
|
20 |
-
Files larger than 50GB are split and require joining, as HF does not support uploading files larger than 50GB.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
---
|
10 |
**Please read me! To use the GGUF from this repo, please use latest llama.cpp with pr [#4283](https://github.com/ggerganov/llama.cpp/pull/4283) merged.**
|
11 |
|
12 |
+
New version llama.cpp wheel for text-generation-webui is building, to be updated soon
|
13 |
+
|
14 |
# Uncensored, white-labeled... Compatible with Meta LLaMA 2.
|
15 |
|
16 |
This is **not in Qwen Format**, but in **LLaMA format**.
|
|
|
19 |
|
20 |
[https://huggingface.co/CausalLM/72B-preview](https://huggingface.co/CausalLM/72B-preview)
|
21 |
|
22 |
+
Files larger than 50GB are split and require joining, as HF does not support uploading files larger than 50GB.
|
23 |
+
|
24 |
+
Tips for merge large files:
|
25 |
+
|
26 |
+
linux
|
27 |
+
```bash
|
28 |
+
cat 72b-q5_k_m.gguf-split-a 72b-q5_k_m.gguf-split-b > 72b-q5_k_m.gguf
|
29 |
+
```
|
30 |
+
|
31 |
+
windows
|
32 |
+
```cmd
|
33 |
+
copy /b 72b-q5_k_m.gguf-split-a + 72b-q5_k_m.gguf-split-b 72b-q5_k_m.gguf
|
34 |
+
```
|