YorkieOH10 commited on
Commit
447300f
1 Parent(s): 9da53a9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: afl-3.0
3
+ library_name: transformers
4
+ tags:
5
+ - UNA
6
+ - juanako
7
+ - llama-cpp
8
+ - gguf-my-repo
9
+ ---
10
+
11
+ # YorkieOH10/UNA-ThePitbull-21.4-v1-Q4_K_M-GGUF
12
+ This model was converted to GGUF format from [`fblgit/UNA-ThePitbull-21.4-v1`](https://huggingface.co/fblgit/UNA-ThePitbull-21.4-v1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
13
+ Refer to the [original model card](https://huggingface.co/fblgit/UNA-ThePitbull-21.4-v1) for more details on the model.
14
+ ## Use with llama.cpp
15
+ Install llama.cpp through brew.
16
+ ```bash
17
+ brew install ggerganov/ggerganov/llama.cpp
18
+ ```
19
+ Invoke the llama.cpp server or the CLI.
20
+ CLI:
21
+ ```bash
22
+ llama-cli --hf-repo YorkieOH10/UNA-ThePitbull-21.4-v1-Q4_K_M-GGUF --model una-thepitbull-21.4-v1-q4_k_m.gguf -p "The meaning to life and the universe is"
23
+ ```
24
+ Server:
25
+ ```bash
26
+ llama-server --hf-repo YorkieOH10/UNA-ThePitbull-21.4-v1-Q4_K_M-GGUF --model una-thepitbull-21.4-v1-q4_k_m.gguf -c 2048
27
+ ```
28
+ 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.
29
+ ```
30
+ git clone https://github.com/ggerganov/llama.cpp && \
31
+ cd llama.cpp && \
32
+ make && \
33
+ ./main -m una-thepitbull-21.4-v1-q4_k_m.gguf -n 128
34
+ ```