Ransss commited on
Commit
c3c5465
1 Parent(s): 1322377

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/Xwin-MLewd-13B-V0.2-Q8_0-GGUF
11
+ This model was converted to GGUF format from [`Undi95/Xwin-MLewd-13B-V0.2`](https://huggingface.co/Undi95/Xwin-MLewd-13B-V0.2) 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/Xwin-MLewd-13B-V0.2) 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/Xwin-MLewd-13B-V0.2-Q8_0-GGUF --model xwin-mlewd-13b-v0.2-q8_0.gguf -p "The meaning to life and the universe is"
22
+ ```
23
+ Server:
24
+ ```bash
25
+ llama-server --hf-repo Ransss/Xwin-MLewd-13B-V0.2-Q8_0-GGUF --model xwin-mlewd-13b-v0.2-q8_0.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 xwin-mlewd-13b-v0.2-q8_0.gguf -n 128
33
+ ```