GGUF
llama-cpp
gguf-my-repo
DavidAU commited on
Commit
f25b83a
1 Parent(s): 1af01c7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +66 -0
README.md ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - llama-cpp
5
+ - gguf-my-repo
6
+ datasets:
7
+ - ai2_arc
8
+ - jondurbin/airoboros-3.2
9
+ - codeparrot/apps
10
+ - facebook/belebele
11
+ - boolq
12
+ - jondurbin/cinematika-v0.1
13
+ - drop
14
+ - lmsys/lmsys-chat-1m
15
+ - TIGER-Lab/MathInstruct
16
+ - cais/mmlu
17
+ - Muennighoff/natural-instructions
18
+ - openbookqa
19
+ - piqa
20
+ - Vezora/Tested-22k-Python-Alpaca
21
+ - cakiki/rosetta-code
22
+ - Open-Orca/SlimOrca
23
+ - spider
24
+ - squad_v2
25
+ - migtissera/Synthia-v1.3
26
+ - datasets/winogrande
27
+ - nvidia/HelpSteer
28
+ - Intel/orca_dpo_pairs
29
+ - unalignment/toxic-dpo-v0.1
30
+ - jondurbin/truthy-dpo-v0.1
31
+ - allenai/ultrafeedback_binarized_cleaned
32
+ - Squish42/bluemoon-fandom-1-1-rp-cleaned
33
+ - LDJnr/Capybara
34
+ - JULIELab/EmoBank
35
+ - kingbri/PIPPA-shareGPT
36
+ ---
37
+
38
+ # DavidAU/bagel-dpo-1.1b-v0.3-Q8_0-GGUF
39
+ This model was converted to GGUF format from [`jondurbin/bagel-dpo-1.1b-v0.3`](https://huggingface.co/jondurbin/bagel-dpo-1.1b-v0.3) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
40
+ Refer to the [original model card](https://huggingface.co/jondurbin/bagel-dpo-1.1b-v0.3) for more details on the model.
41
+ ## Use with llama.cpp
42
+
43
+ Install llama.cpp through brew.
44
+
45
+ ```bash
46
+ brew install ggerganov/ggerganov/llama.cpp
47
+ ```
48
+ Invoke the llama.cpp server or the CLI.
49
+
50
+ CLI:
51
+
52
+ ```bash
53
+ llama-cli --hf-repo DavidAU/bagel-dpo-1.1b-v0.3-Q8_0-GGUF --model bagel-dpo-1.1b-v0.3.Q8_0.gguf -p "The meaning to life and the universe is"
54
+ ```
55
+
56
+ Server:
57
+
58
+ ```bash
59
+ llama-server --hf-repo DavidAU/bagel-dpo-1.1b-v0.3-Q8_0-GGUF --model bagel-dpo-1.1b-v0.3.Q8_0.gguf -c 2048
60
+ ```
61
+
62
+ 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.
63
+
64
+ ```
65
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m bagel-dpo-1.1b-v0.3.Q8_0.gguf -n 128
66
+ ```