jeiku commited on
Commit
77e8ac9
1 Parent(s): 3f6f8ab

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ tags:
4
+ - mergekit
5
+ - merge
6
+ - llama-cpp
7
+ - gguf-my-repo
8
+ base_model:
9
+ - ResplendentAI/SOVL_Llama3_8B
10
+ - cgato/L3-TheSpice-8b-v0.8.3
11
+ - ResplendentAI/Aura_Llama3
12
+ - Nitral-AI/Poppy_Porpoise-0.72-L3-8B
13
+ - ResplendentAI/Smarts_Llama3
14
+ - Sao10K/L3-8B-Stheno-v3.1
15
+ - ResplendentAI/Luna_Llama3
16
+ ---
17
+
18
+ # jeiku/Test69-Q4_K_M-GGUF
19
+ This model was converted to GGUF format from [`jeiku/Test69`](https://huggingface.co/jeiku/Test69) 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/jeiku/Test69) for more details on the model.
21
+ ## Use with llama.cpp
22
+
23
+ Install llama.cpp through brew.
24
+
25
+ ```bash
26
+ brew install ggerganov/ggerganov/llama.cpp
27
+ ```
28
+ Invoke the llama.cpp server or the CLI.
29
+
30
+ CLI:
31
+
32
+ ```bash
33
+ llama-cli --hf-repo jeiku/Test69-Q4_K_M-GGUF --model test69.Q4_K_M.gguf -p "The meaning to life and the universe is"
34
+ ```
35
+
36
+ Server:
37
+
38
+ ```bash
39
+ llama-server --hf-repo jeiku/Test69-Q4_K_M-GGUF --model test69.Q4_K_M.gguf -c 2048
40
+ ```
41
+
42
+ 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.
43
+
44
+ ```
45
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m test69.Q4_K_M.gguf -n 128
46
+ ```