andrewcanis
commited on
Commit
•
b605fd8
1
Parent(s):
2d6267b
Add join instructions for split F16 files
Browse files
README.md
CHANGED
@@ -11,3 +11,28 @@ license: cc-by-nc-4.0
|
|
11 |
|
12 |
This repo contains llama.cpp GGUF format model files for [Command-R 35B v1.0](https://huggingface.co/CohereForAI/c4ai-command-r-v01).
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
This repo contains llama.cpp GGUF format model files for [Command-R 35B v1.0](https://huggingface.co/CohereForAI/c4ai-command-r-v01).
|
13 |
|
14 |
+
## F16 files are split and require joining
|
15 |
+
|
16 |
+
**Note:** Hugging face does not support uploading files larger than 50GB so
|
17 |
+
I uploaded the GGUF as 2 split files.
|
18 |
+
|
19 |
+
To join the files, run the following:
|
20 |
+
|
21 |
+
Linux and macOS:
|
22 |
+
```
|
23 |
+
cat c4ai-command-r-v01-f16.gguf-split-* > c4ai-command-r-v01-f16.gguf
|
24 |
+
```
|
25 |
+
Then you can remove the split files to save space:
|
26 |
+
```
|
27 |
+
rm c4ai-command-r-v01-f16.gguf-split-*
|
28 |
+
```
|
29 |
+
Windows command line:
|
30 |
+
```
|
31 |
+
COPY /B c4ai-command-r-v01-f16.gguf-split-a + c4ai-command-r-v01-f16.gguf-split-b c4ai-command-r-v01-f16.gguf
|
32 |
+
```
|
33 |
+
|
34 |
+
Then you can remove the split files to save space:
|
35 |
+
```
|
36 |
+
del c4ai-command-r-v01-f16.gguf-split-a c4ai-command-r-v01-f16.gguf-split-b
|
37 |
+
```
|
38 |
+
|