teneriffa commited on
Commit
87d06eb
1 Parent(s): 5ac373a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ tags:
4
+ - llama-cpp
5
+ - gguf-my-repo
6
+ datasets:
7
+ - jerryjalapeno/nart-100k-synthetic
8
+ ---
9
+
10
+ # teneriffa/TherapyBeagle-11B-v1-Q4_0-GGUF
11
+ This model was converted to GGUF format from [`victunes/TherapyBeagle-11B-v1`](https://huggingface.co/victunes/TherapyBeagle-11B-v1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
12
+ Refer to the [original model card](https://huggingface.co/victunes/TherapyBeagle-11B-v1) for more details on the model.
13
+ ## Use with llama.cpp
14
+
15
+ Install llama.cpp through brew.
16
+
17
+ ```bash
18
+ brew install ggerganov/ggerganov/llama.cpp
19
+ ```
20
+ Invoke the llama.cpp server or the CLI.
21
+
22
+ CLI:
23
+
24
+ ```bash
25
+ llama-cli --hf-repo teneriffa/TherapyBeagle-11B-v1-Q4_0-GGUF --model therapybeagle-11b-v1.Q4_0.gguf -p "The meaning to life and the universe is"
26
+ ```
27
+
28
+ Server:
29
+
30
+ ```bash
31
+ llama-server --hf-repo teneriffa/TherapyBeagle-11B-v1-Q4_0-GGUF --model therapybeagle-11b-v1.Q4_0.gguf -c 2048
32
+ ```
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
+ ```
37
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m therapybeagle-11b-v1.Q4_0.gguf -n 128
38
+ ```