GGUF
Russian
llama-cpp
gguf-my-repo
DavidAU commited on
Commit
0bc3a3d
1 Parent(s): 4d89850

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - ru
4
+ license: other
5
+ tags:
6
+ - llama-cpp
7
+ - gguf-my-repo
8
+ datasets:
9
+ - IlyaGusev/ru_turbo_saiga
10
+ - IlyaGusev/ru_sharegpt_cleaned
11
+ - IlyaGusev/oasst1_ru_main_branch
12
+ - IlyaGusev/gpt_roleplay_realm
13
+ - lksy/ru_instruct_gpt4
14
+ license_name: llama3
15
+ license_link: https://llama.meta.com/llama3/license/
16
+ ---
17
+
18
+ # DavidAU/saiga_llama3_8b-Q8_0-GGUF
19
+ This model was converted to GGUF format from [`IlyaGusev/saiga_llama3_8b`](https://huggingface.co/IlyaGusev/saiga_llama3_8b) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
20
+ Refer to the [original model card](https://huggingface.co/IlyaGusev/saiga_llama3_8b) for more details on the model.
21
+ ## Use with llama.cpp
22
+
23
+ Install llama.cpp through brew.
24
+
25
+ ```bash
26
+ brew install ggerganov/ggerganov/llama.cpp
27
+ ```
28
+ Invoke the llama.cpp server or the CLI.
29
+
30
+ CLI:
31
+
32
+ ```bash
33
+ llama-cli --hf-repo DavidAU/saiga_llama3_8b-Q8_0-GGUF --model saiga_llama3_8b.Q8_0.gguf -p "The meaning to life and the universe is"
34
+ ```
35
+
36
+ Server:
37
+
38
+ ```bash
39
+ llama-server --hf-repo DavidAU/saiga_llama3_8b-Q8_0-GGUF --model saiga_llama3_8b.Q8_0.gguf -c 2048
40
+ ```
41
+
42
+ 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.
43
+
44
+ ```
45
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m saiga_llama3_8b.Q8_0.gguf -n 128
46
+ ```