jsfs11 commited on
Commit
64393d0
1 Parent(s): a86986e

Upload README.md with huggingface_hub

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