DavidAU commited on
Commit
cb66dbe
1 Parent(s): 07b097a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - jondurbin/bagel-dpo-7b-v0.1
11
+ - transformers
12
+ - safetensors
13
+ - text-generation
14
+ - dataset:ai2_arc
15
+ - dataset:unalignment/spicy-3.1
16
+ - dataset:codeparrot/apps
17
+ - dataset:facebook/belebele
18
+ - dataset:boolq
19
+ - dataset:jondurbin/cinematika-v0.1
20
+ - dataset:drop
21
+ - dataset:lmsys/lmsys-chat-1m
22
+ - dataset:TIGER-Lab/MathInstruct
23
+ - dataset:cais/mmlu
24
+ - dataset:Muennighoff/natural-instructions
25
+ - dataset:openbookqa
26
+ - dataset:piqa
27
+ - dataset:Vezora/Tested-22k-Python-Alpaca
28
+ - dataset:cakiki/rosetta-code
29
+ - dataset:Open-Orca/SlimOrca
30
+ - dataset:spider
31
+ - dataset:squad_v2
32
+ - dataset:migtissera/Synthia-v1.3
33
+ - dataset:datasets/winogrande
34
+ - dataset:nvidia/HelpSteer
35
+ - dataset:Intel/orca_dpo_pairs
36
+ - dataset:unalignment/toxic-dpo-v0.1
37
+ - dataset:jondurbin/truthy-dpo-v0.1
38
+ - dataset:allenai/ultrafeedback_binarized_cleaned
39
+ - license:apache-2.0
40
+ - autotrain_compatible
41
+ - endpoints_compatible
42
+ - region:us
43
+ - llama-cpp
44
+ - gguf-my-repo
45
+ ---
46
+
47
+ # DavidAU/bagel-dpo-7b-v0.1-Mistral-7B-Instruct-v0.1-Q6_K-GGUF
48
+ This model was converted to GGUF format from [`MaziyarPanahi/bagel-dpo-7b-v0.1-Mistral-7B-Instruct-v0.1`](https://huggingface.co/MaziyarPanahi/bagel-dpo-7b-v0.1-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.
49
+ Refer to the [original model card](https://huggingface.co/MaziyarPanahi/bagel-dpo-7b-v0.1-Mistral-7B-Instruct-v0.1) for more details on the model.
50
+ ## Use with llama.cpp
51
+
52
+ Install llama.cpp through brew.
53
+
54
+ ```bash
55
+ brew install ggerganov/ggerganov/llama.cpp
56
+ ```
57
+ Invoke the llama.cpp server or the CLI.
58
+
59
+ CLI:
60
+
61
+ ```bash
62
+ llama-cli --hf-repo DavidAU/bagel-dpo-7b-v0.1-Mistral-7B-Instruct-v0.1-Q6_K-GGUF --model bagel-dpo-7b-v0.1-mistral-7b-instruct-v0.1.Q6_K.gguf -p "The meaning to life and the universe is"
63
+ ```
64
+
65
+ Server:
66
+
67
+ ```bash
68
+ llama-server --hf-repo DavidAU/bagel-dpo-7b-v0.1-Mistral-7B-Instruct-v0.1-Q6_K-GGUF --model bagel-dpo-7b-v0.1-mistral-7b-instruct-v0.1.Q6_K.gguf -c 2048
69
+ ```
70
+
71
+ 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.
72
+
73
+ ```
74
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m bagel-dpo-7b-v0.1-mistral-7b-instruct-v0.1.Q6_K.gguf -n 128
75
+ ```