DavidAU commited on
Commit
6db37e3
1 Parent(s): cff6afc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - mncai/mistral-7b-dpo-v6
11
+ - transformers
12
+ - safetensors
13
+ - text-generation
14
+ - en
15
+ - dataset:Intel/orca_dpo_pairs
16
+ - license:apache-2.0
17
+ - autotrain_compatible
18
+ - endpoints_compatible
19
+ - has_space
20
+ - region:us
21
+ - llama-cpp
22
+ - gguf-my-repo
23
+ ---
24
+
25
+ # DavidAU/mistral-7b-dpo-v6-Mistral-7B-Instruct-v0.1-Q6_K-GGUF
26
+ This model was converted to GGUF format from [`MaziyarPanahi/mistral-7b-dpo-v6-Mistral-7B-Instruct-v0.1`](https://huggingface.co/MaziyarPanahi/mistral-7b-dpo-v6-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.
27
+ Refer to the [original model card](https://huggingface.co/MaziyarPanahi/mistral-7b-dpo-v6-Mistral-7B-Instruct-v0.1) for more details on the model.
28
+ ## Use with llama.cpp
29
+
30
+ Install llama.cpp through brew.
31
+
32
+ ```bash
33
+ brew install ggerganov/ggerganov/llama.cpp
34
+ ```
35
+ Invoke the llama.cpp server or the CLI.
36
+
37
+ CLI:
38
+
39
+ ```bash
40
+ llama-cli --hf-repo DavidAU/mistral-7b-dpo-v6-Mistral-7B-Instruct-v0.1-Q6_K-GGUF --model mistral-7b-dpo-v6-mistral-7b-instruct-v0.1.Q6_K.gguf -p "The meaning to life and the universe is"
41
+ ```
42
+
43
+ Server:
44
+
45
+ ```bash
46
+ llama-server --hf-repo DavidAU/mistral-7b-dpo-v6-Mistral-7B-Instruct-v0.1-Q6_K-GGUF --model mistral-7b-dpo-v6-mistral-7b-instruct-v0.1.Q6_K.gguf -c 2048
47
+ ```
48
+
49
+ 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.
50
+
51
+ ```
52
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m mistral-7b-dpo-v6-mistral-7b-instruct-v0.1.Q6_K.gguf -n 128
53
+ ```