NovNovikov
commited on
Commit
•
3b5d44b
1
Parent(s):
2efae13
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
- fr
|
5 |
+
- de
|
6 |
+
- es
|
7 |
+
- it
|
8 |
+
- pt
|
9 |
+
- ja
|
10 |
+
- ko
|
11 |
+
- zh
|
12 |
+
- ar
|
13 |
+
license: cc-by-nc-4.0
|
14 |
+
library_name: transformers
|
15 |
+
tags:
|
16 |
+
- llama-cpp
|
17 |
+
- gguf-my-repo
|
18 |
+
---
|
19 |
+
|
20 |
+
# NovNovikov/c4ai-command-r-v01-Q3_K_L-GGUF
|
21 |
+
This model was converted to GGUF format from [`CohereForAI/c4ai-command-r-v01`](https://huggingface.co/CohereForAI/c4ai-command-r-v01) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
22 |
+
Refer to the [original model card](https://huggingface.co/CohereForAI/c4ai-command-r-v01) for more details on the model.
|
23 |
+
## Use with llama.cpp
|
24 |
+
Install llama.cpp through brew.
|
25 |
+
```bash
|
26 |
+
brew install ggerganov/ggerganov/llama.cpp
|
27 |
+
```
|
28 |
+
Invoke the llama.cpp server or the CLI.
|
29 |
+
CLI:
|
30 |
+
```bash
|
31 |
+
llama-cli --hf-repo NovNovikov/c4ai-command-r-v01-Q3_K_L-GGUF --model c4ai-command-r-v01-q3_k_l.gguf -p "The meaning to life and the universe is"
|
32 |
+
```
|
33 |
+
Server:
|
34 |
+
```bash
|
35 |
+
llama-server --hf-repo NovNovikov/c4ai-command-r-v01-Q3_K_L-GGUF --model c4ai-command-r-v01-q3_k_l.gguf -c 2048
|
36 |
+
```
|
37 |
+
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
|
38 |
+
```
|
39 |
+
git clone https://github.com/ggerganov/llama.cpp && \
|
40 |
+
cd llama.cpp && \
|
41 |
+
make && \
|
42 |
+
./main -m c4ai-command-r-v01-q3_k_l.gguf -n 128
|
43 |
+
```
|