RiggityWrckd commited on
Commit
2e96c15
·
verified ·
1 Parent(s): 61ff745

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +92 -0
README.md ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: transformers
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
+ - moe
27
+ - mixture of experts
28
+ - 128 experts
29
+ - 8 active experts
30
+ - fiction
31
+ - roleplaying
32
+ - bfloat16
33
+ - rp
34
+ - qwen3
35
+ - horror
36
+ - finetune
37
+ - thinking
38
+ - reasoning
39
+ - qwen3_moe
40
+ - merge
41
+ - uncensored
42
+ - abliterated
43
+ - not-for-all-audiences
44
+ - llama-cpp
45
+ - gguf-my-repo
46
+ base_model: DavidAU/Qwen3-33B-A3B-Stranger-Thoughts-Abliterated-Uncensored
47
+ pipeline_tag: text-generation
48
+ ---
49
+
50
+ # RiggityWrckd/Qwen3-33B-A3B-Stranger-Thoughts-Abliterated-Uncensored-Q5_K_M-GGUF
51
+ This model was converted to GGUF format from [`DavidAU/Qwen3-33B-A3B-Stranger-Thoughts-Abliterated-Uncensored`](https://huggingface.co/DavidAU/Qwen3-33B-A3B-Stranger-Thoughts-Abliterated-Uncensored) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
52
+ Refer to the [original model card](https://huggingface.co/DavidAU/Qwen3-33B-A3B-Stranger-Thoughts-Abliterated-Uncensored) for more details on the model.
53
+
54
+ ## Use with llama.cpp
55
+ Install llama.cpp through brew (works on Mac and Linux)
56
+
57
+ ```bash
58
+ brew install llama.cpp
59
+
60
+ ```
61
+ Invoke the llama.cpp server or the CLI.
62
+
63
+ ### CLI:
64
+ ```bash
65
+ llama-cli --hf-repo RiggityWrckd/Qwen3-33B-A3B-Stranger-Thoughts-Abliterated-Uncensored-Q5_K_M-GGUF --hf-file qwen3-33b-a3b-stranger-thoughts-abliterated-uncensored-q5_k_m.gguf -p "The meaning to life and the universe is"
66
+ ```
67
+
68
+ ### Server:
69
+ ```bash
70
+ llama-server --hf-repo RiggityWrckd/Qwen3-33B-A3B-Stranger-Thoughts-Abliterated-Uncensored-Q5_K_M-GGUF --hf-file qwen3-33b-a3b-stranger-thoughts-abliterated-uncensored-q5_k_m.gguf -c 2048
71
+ ```
72
+
73
+ 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.
74
+
75
+ Step 1: Clone llama.cpp from GitHub.
76
+ ```
77
+ git clone https://github.com/ggerganov/llama.cpp
78
+ ```
79
+
80
+ 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).
81
+ ```
82
+ cd llama.cpp && LLAMA_CURL=1 make
83
+ ```
84
+
85
+ Step 3: Run inference through the main binary.
86
+ ```
87
+ ./llama-cli --hf-repo RiggityWrckd/Qwen3-33B-A3B-Stranger-Thoughts-Abliterated-Uncensored-Q5_K_M-GGUF --hf-file qwen3-33b-a3b-stranger-thoughts-abliterated-uncensored-q5_k_m.gguf -p "The meaning to life and the universe is"
88
+ ```
89
+ or
90
+ ```
91
+ ./llama-server --hf-repo RiggityWrckd/Qwen3-33B-A3B-Stranger-Thoughts-Abliterated-Uncensored-Q5_K_M-GGUF --hf-file qwen3-33b-a3b-stranger-thoughts-abliterated-uncensored-q5_k_m.gguf -c 2048
92
+ ```