GGUF
Generated from Trainer
axolotl
llama-cpp
gguf-my-repo
DavidAU commited on
Commit
12e10e9
1 Parent(s): fbda367

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: other
3
+ tags:
4
+ - generated_from_trainer
5
+ - axolotl
6
+ - llama-cpp
7
+ - gguf-my-repo
8
+ base_model: meta-llama/Meta-Llama-3-8B
9
+ datasets:
10
+ - cognitivecomputations/Dolphin-2.9
11
+ - teknium/OpenHermes-2.5
12
+ - m-a-p/CodeFeedback-Filtered-Instruction
13
+ - cognitivecomputations/dolphin-coder
14
+ - cognitivecomputations/samantha-data
15
+ - HuggingFaceH4/ultrachat_200k
16
+ - microsoft/orca-math-word-problems-200k
17
+ - abacusai/SystemChat-1.1
18
+ - Locutusque/function-calling-chatml
19
+ - internlm/Agent-FLAN
20
+ model-index:
21
+ - name: out
22
+ results: []
23
+ ---
24
+
25
+ # DavidAU/dolphin-2.9-llama3-8b-Q8_0-GGUF
26
+ This model was converted to GGUF format from [`cognitivecomputations/dolphin-2.9-llama3-8b`](https://huggingface.co/cognitivecomputations/dolphin-2.9-llama3-8b) 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/cognitivecomputations/dolphin-2.9-llama3-8b) 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/dolphin-2.9-llama3-8b-Q8_0-GGUF --model dolphin-2.9-llama3-8b.Q8_0.gguf -p "The meaning to life and the universe is"
41
+ ```
42
+
43
+ Server:
44
+
45
+ ```bash
46
+ llama-server --hf-repo DavidAU/dolphin-2.9-llama3-8b-Q8_0-GGUF --model dolphin-2.9-llama3-8b.Q8_0.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 dolphin-2.9-llama3-8b.Q8_0.gguf -n 128
53
+ ```