mudler commited on
Commit
e18d641
1 Parent(s): 05d05ed

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: llama3
3
+ library_name: transformers
4
+ tags:
5
+ - mergekit
6
+ - merge
7
+ - not-for-all-audiences
8
+ - llama-cpp
9
+ - gguf-my-repo
10
+ base_model:
11
+ - Hastagaras/Halu-8B-Llama3-v0.3
12
+ - Blackroot/Llama-3-LongStory-LORA
13
+ - Hastagaras/Halu-8B-Llama3-v0.3
14
+ - Blackroot/Llama-3-8B-Abomination-LORA
15
+ - Hastagaras/Halu-8B-Llama3-v0.3
16
+ ---
17
+
18
+ # mudler/Halu-8B-Llama3-Blackroot-Q4_K_M-GGUF
19
+ This model was converted to GGUF format from [`Hastagaras/Halu-8B-Llama3-Blackroot`](https://huggingface.co/Hastagaras/Halu-8B-Llama3-Blackroot) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
20
+ Refer to the [original model card](https://huggingface.co/Hastagaras/Halu-8B-Llama3-Blackroot) for more details on the model.
21
+ ## Use with llama.cpp
22
+ Install llama.cpp through brew.
23
+ ```bash
24
+ brew install ggerganov/ggerganov/llama.cpp
25
+ ```
26
+ Invoke the llama.cpp server or the CLI.
27
+ CLI:
28
+ ```bash
29
+ llama-cli --hf-repo mudler/Halu-8B-Llama3-Blackroot-Q4_K_M-GGUF --model halu-8b-llama3-blackroot-q4_k_m.gguf -p "The meaning to life and the universe is"
30
+ ```
31
+ Server:
32
+ ```bash
33
+ llama-server --hf-repo mudler/Halu-8B-Llama3-Blackroot-Q4_K_M-GGUF --model halu-8b-llama3-blackroot-q4_k_m.gguf -c 2048
34
+ ```
35
+ 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.
36
+ ```
37
+ git clone https://github.com/ggerganov/llama.cpp && \
38
+ cd llama.cpp && \
39
+ make && \
40
+ ./main -m halu-8b-llama3-blackroot-q4_k_m.gguf -n 128
41
+ ```