NikolayKozloff commited on
Commit
166d41e
1 Parent(s): 797745f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - de
4
+ license: llama3
5
+ library_name: transformers
6
+ tags:
7
+ - llama-cpp
8
+ - gguf-my-repo
9
+ ---
10
+
11
+ # NikolayKozloff/Llama3-DiscoLeo-Instruct-8B-v0.1-Q8_0-GGUF
12
+ This model was converted to GGUF format from [`DiscoResearch/Llama3-DiscoLeo-Instruct-8B-v0.1`](https://huggingface.co/DiscoResearch/Llama3-DiscoLeo-Instruct-8B-v0.1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
13
+ Refer to the [original model card](https://huggingface.co/DiscoResearch/Llama3-DiscoLeo-Instruct-8B-v0.1) for more details on the model.
14
+ ## Use with llama.cpp
15
+ Install llama.cpp through brew.
16
+ ```bash
17
+ brew install ggerganov/ggerganov/llama.cpp
18
+ ```
19
+ Invoke the llama.cpp server or the CLI.
20
+ CLI:
21
+ ```bash
22
+ llama-cli --hf-repo NikolayKozloff/Llama3-DiscoLeo-Instruct-8B-v0.1-Q8_0-GGUF --model llama3-discoleo-instruct-8b-v0.1-q8_0.gguf -p "The meaning to life and the universe is"
23
+ ```
24
+ Server:
25
+ ```bash
26
+ llama-server --hf-repo NikolayKozloff/Llama3-DiscoLeo-Instruct-8B-v0.1-Q8_0-GGUF --model llama3-discoleo-instruct-8b-v0.1-q8_0.gguf -c 2048
27
+ ```
28
+ 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.
29
+ ```
30
+ git clone https://github.com/ggerganov/llama.cpp && \
31
+ cd llama.cpp && \
32
+ make && \
33
+ ./main -m llama3-discoleo-instruct-8b-v0.1-q8_0.gguf -n 128
34
+ ```