xX-FANE-Xx commited on
Commit
31dcee8
1 Parent(s): 130e1ad

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ library_name: transformers
4
+ tags:
5
+ - koala
6
+ - ShareGPT
7
+ - llama
8
+ - gptq
9
+ - llama-cpp
10
+ - gguf-my-repo
11
+ datasets:
12
+ - RyokoAI/ShareGPT52K
13
+ - Hello-SimpleAI/HC3
14
+ pipeline_tag: text-generation
15
+ ---
16
+
17
+ # xX-FANE-Xx/koala-13B-HF-Q2_K-GGUF
18
+ This model was converted to GGUF format from [`TheBloke/koala-13B-HF`](https://huggingface.co/TheBloke/koala-13B-HF) 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/TheBloke/koala-13B-HF) for more details on the model.
20
+ ## Use with llama.cpp
21
+ Install llama.cpp through brew.
22
+ ```bash
23
+ brew install ggerganov/ggerganov/llama.cpp
24
+ ```
25
+ Invoke the llama.cpp server or the CLI.
26
+ CLI:
27
+ ```bash
28
+ llama-cli --hf-repo xX-FANE-Xx/koala-13B-HF-Q2_K-GGUF --model koala-13b-hf-q2_k.gguf -p "The meaning to life and the universe is"
29
+ ```
30
+ Server:
31
+ ```bash
32
+ llama-server --hf-repo xX-FANE-Xx/koala-13B-HF-Q2_K-GGUF --model koala-13b-hf-q2_k.gguf -c 2048
33
+ ```
34
+ 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.
35
+ ```
36
+ git clone https://github.com/ggerganov/llama.cpp && \
37
+ cd llama.cpp && \
38
+ make && \
39
+ ./main -m koala-13b-hf-q2_k.gguf -n 128
40
+ ```