Recouper commited on
Commit
b199829
·
verified ·
1 Parent(s): 61f0860

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ language:
5
+ - en
6
+ - fr
7
+ - zh
8
+ - de
9
+ tags:
10
+ - creative
11
+ - creative writing
12
+ - fiction writing
13
+ - plot generation
14
+ - sub-plot generation
15
+ - story generation
16
+ - scene continue
17
+ - storytelling
18
+ - fiction story
19
+ - science fiction
20
+ - romance
21
+ - all genres
22
+ - story
23
+ - writing
24
+ - vivid prose
25
+ - vivid writing
26
+ - fiction
27
+ - roleplaying
28
+ - bfloat16
29
+ - swearing
30
+ - rp
31
+ - qwen3
32
+ - horror
33
+ - finetune
34
+ - merge
35
+ - not-for-all-audiences
36
+ - uncensored
37
+ - abliterated
38
+ - llama-cpp
39
+ - gguf-my-repo
40
+ base_model: DavidAU/Qwen3-The-Xiaolong-Josiefied-Omega-Directive-22B-uncensored-abliterated
41
+ pipeline_tag: text-generation
42
+ ---
43
+
44
+ # Recouper/Qwen3-The-Xiaolong-Josiefied-Omega-Directive-22B-uncensored-abliterated-Q4_K_M-GGUF
45
+ This model was converted to GGUF format from [`DavidAU/Qwen3-The-Xiaolong-Josiefied-Omega-Directive-22B-uncensored-abliterated`](https://huggingface.co/DavidAU/Qwen3-The-Xiaolong-Josiefied-Omega-Directive-22B-uncensored-abliterated) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
46
+ Refer to the [original model card](https://huggingface.co/DavidAU/Qwen3-The-Xiaolong-Josiefied-Omega-Directive-22B-uncensored-abliterated) for more details on the model.
47
+
48
+ ## Use with llama.cpp
49
+ Install llama.cpp through brew (works on Mac and Linux)
50
+
51
+ ```bash
52
+ brew install llama.cpp
53
+
54
+ ```
55
+ Invoke the llama.cpp server or the CLI.
56
+
57
+ ### CLI:
58
+ ```bash
59
+ llama-cli --hf-repo Recouper/Qwen3-The-Xiaolong-Josiefied-Omega-Directive-22B-uncensored-abliterated-Q4_K_M-GGUF --hf-file qwen3-the-xiaolong-josiefied-omega-directive-22b-uncensored-abliterated-q4_k_m.gguf -p "The meaning to life and the universe is"
60
+ ```
61
+
62
+ ### Server:
63
+ ```bash
64
+ llama-server --hf-repo Recouper/Qwen3-The-Xiaolong-Josiefied-Omega-Directive-22B-uncensored-abliterated-Q4_K_M-GGUF --hf-file qwen3-the-xiaolong-josiefied-omega-directive-22b-uncensored-abliterated-q4_k_m.gguf -c 2048
65
+ ```
66
+
67
+ 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.
68
+
69
+ Step 1: Clone llama.cpp from GitHub.
70
+ ```
71
+ git clone https://github.com/ggerganov/llama.cpp
72
+ ```
73
+
74
+ Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
75
+ ```
76
+ cd llama.cpp && LLAMA_CURL=1 make
77
+ ```
78
+
79
+ Step 3: Run inference through the main binary.
80
+ ```
81
+ ./llama-cli --hf-repo Recouper/Qwen3-The-Xiaolong-Josiefied-Omega-Directive-22B-uncensored-abliterated-Q4_K_M-GGUF --hf-file qwen3-the-xiaolong-josiefied-omega-directive-22b-uncensored-abliterated-q4_k_m.gguf -p "The meaning to life and the universe is"
82
+ ```
83
+ or
84
+ ```
85
+ ./llama-server --hf-repo Recouper/Qwen3-The-Xiaolong-Josiefied-Omega-Directive-22B-uncensored-abliterated-Q4_K_M-GGUF --hf-file qwen3-the-xiaolong-josiefied-omega-directive-22b-uncensored-abliterated-q4_k_m.gguf -c 2048
86
+ ```