newsletter commited on
Commit
9b9e792
·
verified ·
1 Parent(s): d28d6fe

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
+ language:
3
+ - de
4
+ - en
5
+ license: apache-2.0
6
+ tags:
7
+ - merge
8
+ - mergekit
9
+ - lazymergekit
10
+ - DiscoResearch/DiscoLM_German_7b_v1
11
+ - DRXD1000/Phoenix
12
+ - VAGOsolutions/SauerkrautLM-7b-v1-mistral
13
+ - malteos/hermeo-7b
14
+ - llama-cpp
15
+ - gguf-my-repo
16
+ base_model:
17
+ - DiscoResearch/DiscoLM_German_7b_v1
18
+ - DRXD1000/Phoenix
19
+ - VAGOsolutions/SauerkrautLM-7b-v1-mistral
20
+ - malteos/hermeo-7b
21
+ ---
22
+
23
+ # newsletter/Wiedervereinigung-7b-dpo-Q6_K-GGUF
24
+ This model was converted to GGUF format from [`mayflowergmbh/Wiedervereinigung-7b-dpo`](https://huggingface.co/mayflowergmbh/Wiedervereinigung-7b-dpo) 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/mayflowergmbh/Wiedervereinigung-7b-dpo) 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 newsletter/Wiedervereinigung-7b-dpo-Q6_K-GGUF --model wiedervereinigung-7b-dpo.Q6_K.gguf -p "The meaning to life and the universe is"
39
+ ```
40
+
41
+ Server:
42
+
43
+ ```bash
44
+ llama-server --hf-repo newsletter/Wiedervereinigung-7b-dpo-Q6_K-GGUF --model wiedervereinigung-7b-dpo.Q6_K.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 wiedervereinigung-7b-dpo.Q6_K.gguf -n 128
51
+ ```