DavidAU commited on
Commit
c1783c9
1 Parent(s): d542fa3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - Safetensors
5
+ - mistral
6
+ - text-generation-inference
7
+ - merge
8
+ - 7b
9
+ - mistralai/Mistral-7B-Instruct-v0.1
10
+ - viethq188/LeoScorpius-7B-Chat-DPO
11
+ - transformers
12
+ - pytorch
13
+ - text-generation
14
+ - license:apache-2.0
15
+ - autotrain_compatible
16
+ - endpoints_compatible
17
+ - has_space
18
+ - region:us
19
+ - llama-cpp
20
+ - gguf-my-repo
21
+ ---
22
+
23
+ # DavidAU/LeoScorpius-7B-Chat-DPO-Mistral-7B-Instruct-v0.1-Q8_0-GGUF
24
+ This model was converted to GGUF format from [`MaziyarPanahi/LeoScorpius-7B-Chat-DPO-Mistral-7B-Instruct-v0.1`](https://huggingface.co/MaziyarPanahi/LeoScorpius-7B-Chat-DPO-Mistral-7B-Instruct-v0.1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
25
+ Refer to the [original model card](https://huggingface.co/MaziyarPanahi/LeoScorpius-7B-Chat-DPO-Mistral-7B-Instruct-v0.1) for more details on the model.
26
+ ## Use with llama.cpp
27
+
28
+ Install llama.cpp through brew.
29
+
30
+ ```bash
31
+ brew install ggerganov/ggerganov/llama.cpp
32
+ ```
33
+ Invoke the llama.cpp server or the CLI.
34
+
35
+ CLI:
36
+
37
+ ```bash
38
+ llama-cli --hf-repo DavidAU/LeoScorpius-7B-Chat-DPO-Mistral-7B-Instruct-v0.1-Q8_0-GGUF --model leoscorpius-7b-chat-dpo-mistral-7b-instruct-v0.1.Q8_0.gguf -p "The meaning to life and the universe is"
39
+ ```
40
+
41
+ Server:
42
+
43
+ ```bash
44
+ llama-server --hf-repo DavidAU/LeoScorpius-7B-Chat-DPO-Mistral-7B-Instruct-v0.1-Q8_0-GGUF --model leoscorpius-7b-chat-dpo-mistral-7b-instruct-v0.1.Q8_0.gguf -c 2048
45
+ ```
46
+
47
+ 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.
48
+
49
+ ```
50
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m leoscorpius-7b-chat-dpo-mistral-7b-instruct-v0.1.Q8_0.gguf -n 128
51
+ ```