Kaoeiri commited on
Commit
5bf6c8c
1 Parent(s): b6d8140

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - merge
4
+ - mergekit
5
+ - lazymergekit
6
+ - Kaoeiri/Keiana-L3-Test5.4-8B-10
7
+ - Undi95/Llama-3-LewdPlay-8B
8
+ - Kaoeiri/Keiana-L3-Test4.7-8B-3
9
+ - llama-cpp
10
+ - gguf-my-repo
11
+ base_model:
12
+ - Kaoeiri/Keiana-L3-Test5.4-8B-10
13
+ - Undi95/Llama-3-LewdPlay-8B
14
+ - Kaoeiri/Keiana-L3-Test4.7-8B-3
15
+ ---
16
+
17
+ # Kaoeiri/Keiana-L3-Test5.75-8B-13.5-Q6_K-GGUF
18
+ This model was converted to GGUF format from [`Kaoeiri/Keiana-L3-Test5.75-8B-13.5`](https://huggingface.co/Kaoeiri/Keiana-L3-Test5.75-8B-13.5) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
19
+ Refer to the [original model card](https://huggingface.co/Kaoeiri/Keiana-L3-Test5.75-8B-13.5) for more details on the model.
20
+ ## Use with llama.cpp
21
+
22
+ Install llama.cpp through brew.
23
+
24
+ ```bash
25
+ brew install ggerganov/ggerganov/llama.cpp
26
+ ```
27
+ Invoke the llama.cpp server or the CLI.
28
+
29
+ CLI:
30
+
31
+ ```bash
32
+ llama-cli --hf-repo Kaoeiri/Keiana-L3-Test5.75-8B-13.5-Q6_K-GGUF --model keiana-l3-test5.75-8b-13.5.Q6_K.gguf -p "The meaning to life and the universe is"
33
+ ```
34
+
35
+ Server:
36
+
37
+ ```bash
38
+ llama-server --hf-repo Kaoeiri/Keiana-L3-Test5.75-8B-13.5-Q6_K-GGUF --model keiana-l3-test5.75-8b-13.5.Q6_K.gguf -c 2048
39
+ ```
40
+
41
+ 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.
42
+
43
+ ```
44
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m keiana-l3-test5.75-8b-13.5.Q6_K.gguf -n 128
45
+ ```