NovNovikov commited on
Commit
3ce10fe
1 Parent(s): 4c5121f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +57 -0
README.md ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - fr
5
+ - de
6
+ - es
7
+ - it
8
+ - pt
9
+ - ja
10
+ - ko
11
+ - zh
12
+ - ar
13
+ - el
14
+ - fa
15
+ - pl
16
+ - id
17
+ - cs
18
+ - he
19
+ - hi
20
+ - nl
21
+ - ro
22
+ - ru
23
+ - tr
24
+ - uk
25
+ - vi
26
+ license: cc-by-nc-4.0
27
+ library_name: transformers
28
+ tags:
29
+ - llama-cpp
30
+ - gguf-my-repo
31
+ inference: false
32
+ ---
33
+
34
+ # NovNovikov/aya-23-8B-Q6_K-GGUF
35
+ This model was converted to GGUF format from [`CohereForAI/aya-23-8B`](https://huggingface.co/CohereForAI/aya-23-8B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
36
+ Refer to the [original model card](https://huggingface.co/CohereForAI/aya-23-8B) for more details on the model.
37
+ ## Use with llama.cpp
38
+ Install llama.cpp through brew.
39
+ ```bash
40
+ brew install ggerganov/ggerganov/llama.cpp
41
+ ```
42
+ Invoke the llama.cpp server or the CLI.
43
+ CLI:
44
+ ```bash
45
+ llama-cli --hf-repo NovNovikov/aya-23-8B-Q6_K-GGUF --model aya-23-8b-q6_k.gguf -p "The meaning to life and the universe is"
46
+ ```
47
+ Server:
48
+ ```bash
49
+ llama-server --hf-repo NovNovikov/aya-23-8B-Q6_K-GGUF --model aya-23-8b-q6_k.gguf -c 2048
50
+ ```
51
+ 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.
52
+ ```
53
+ git clone https://github.com/ggerganov/llama.cpp && \
54
+ cd llama.cpp && \
55
+ make && \
56
+ ./main -m aya-23-8b-q6_k.gguf -n 128
57
+ ```