DavidAU commited on
Commit
83d3450
1 Parent(s): 1d9f70d

Upload README.md with huggingface_hub

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