CultriX commited on
Commit
280574f
1 Parent(s): a5ba19e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ tags:
4
+ - merge
5
+ - mergekit
6
+ - lazymergekit
7
+ - llama-cpp
8
+ - gguf-my-repo
9
+ base_model:
10
+ - NousResearch/Meta-Llama-3-8B-Instruct
11
+ - mlabonne/OrpoLlama-3-8B
12
+ - cognitivecomputations/dolphin-2.9-llama3-8b
13
+ - Danielbrdz/Barcenas-Llama3-8b-ORPO
14
+ - VAGOsolutions/Llama-3-SauerkrautLM-8b-Instruct
15
+ - vicgalle/Configurable-Llama-3-8B-v0.3
16
+ - MaziyarPanahi/Llama-3-8B-Instruct-DPO-v0.3
17
+ ---
18
+
19
+ # CultriX/ChimeraLlama-3-8B-v3-Q6_K-GGUF
20
+ This model was converted to GGUF format from [`mlabonne/ChimeraLlama-3-8B-v3`](https://huggingface.co/mlabonne/ChimeraLlama-3-8B-v3) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
21
+ Refer to the [original model card](https://huggingface.co/mlabonne/ChimeraLlama-3-8B-v3) for more details on the model.
22
+ ## Use with llama.cpp
23
+
24
+ Install llama.cpp through brew.
25
+
26
+ ```bash
27
+ brew install ggerganov/ggerganov/llama.cpp
28
+ ```
29
+ Invoke the llama.cpp server or the CLI.
30
+
31
+ CLI:
32
+
33
+ ```bash
34
+ llama-cli --hf-repo CultriX/ChimeraLlama-3-8B-v3-Q6_K-GGUF --model chimerallama-3-8b-v3.Q6_K.gguf -p "The meaning to life and the universe is"
35
+ ```
36
+
37
+ Server:
38
+
39
+ ```bash
40
+ llama-server --hf-repo CultriX/ChimeraLlama-3-8B-v3-Q6_K-GGUF --model chimerallama-3-8b-v3.Q6_K.gguf -c 2048
41
+ ```
42
+
43
+ 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.
44
+
45
+ ```
46
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m chimerallama-3-8b-v3.Q6_K.gguf -n 128
47
+ ```