Ransss commited on
Commit
fef7c1c
1 Parent(s): 50e7f1c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ tags:
4
+ - not-for-all-audiences
5
+ - nsfw
6
+ - llama-cpp
7
+ - gguf-my-repo
8
+ ---
9
+
10
+ # Ransss/MLewdBoros-L2-13B-Q6_K-GGUF
11
+ This model was converted to GGUF format from [`Undi95/MLewdBoros-L2-13B`](https://huggingface.co/Undi95/MLewdBoros-L2-13B) 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/Undi95/MLewdBoros-L2-13B) for more details on the model.
13
+ ## Use with llama.cpp
14
+ Install llama.cpp through brew.
15
+ ```bash
16
+ brew install ggerganov/ggerganov/llama.cpp
17
+ ```
18
+ Invoke the llama.cpp server or the CLI.
19
+ CLI:
20
+ ```bash
21
+ llama-cli --hf-repo Ransss/MLewdBoros-L2-13B-Q6_K-GGUF --model mlewdboros-l2-13b-q6_k.gguf -p "The meaning to life and the universe is"
22
+ ```
23
+ Server:
24
+ ```bash
25
+ llama-server --hf-repo Ransss/MLewdBoros-L2-13B-Q6_K-GGUF --model mlewdboros-l2-13b-q6_k.gguf -c 2048
26
+ ```
27
+ 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.
28
+ ```
29
+ git clone https://github.com/ggerganov/llama.cpp && \
30
+ cd llama.cpp && \
31
+ make && \
32
+ ./main -m mlewdboros-l2-13b-q6_k.gguf -n 128
33
+ ```