Text Generation
Transformers
GGUF
creative
creative writing
fiction writing
plot generation
sub-plot generation
story generation
scene continue
storytelling
fiction story
science fiction
romance
all genres
story
writing
vivid prose
vivid writing
Mixture of Experts
mixture of experts
128 experts
8 active experts
fiction
roleplaying
bfloat16
rp
qwen3
horror
finetune
thinking
reasoning
qwen3_moe
uncensored
abliterated
Not-For-All-Audiences
llama-cpp
gguf-my-repo
conversational
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
- uncensored
|
41 |
+
- abliterated
|
42 |
+
- not-for-all-audiences
|
43 |
+
- llama-cpp
|
44 |
+
- gguf-my-repo
|
45 |
+
base_model: DavidAU/Qwen3-42B-A3B-Stranger-Thoughts-Deep20x-Abliterated-Uncensored
|
46 |
+
pipeline_tag: text-generation
|
47 |
+
---
|
48 |
+
|
49 |
+
# Recouper/Qwen3-42B-A3B-Stranger-Thoughts-Deep20x-Abliterated-Uncensored-Q4_K_M-GGUF
|
50 |
+
This model was converted to GGUF format from [`DavidAU/Qwen3-42B-A3B-Stranger-Thoughts-Deep20x-Abliterated-Uncensored`](https://huggingface.co/DavidAU/Qwen3-42B-A3B-Stranger-Thoughts-Deep20x-Abliterated-Uncensored) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
51 |
+
Refer to the [original model card](https://huggingface.co/DavidAU/Qwen3-42B-A3B-Stranger-Thoughts-Deep20x-Abliterated-Uncensored) for more details on the model.
|
52 |
+
|
53 |
+
## Use with llama.cpp
|
54 |
+
Install llama.cpp through brew (works on Mac and Linux)
|
55 |
+
|
56 |
+
```bash
|
57 |
+
brew install llama.cpp
|
58 |
+
|
59 |
+
```
|
60 |
+
Invoke the llama.cpp server or the CLI.
|
61 |
+
|
62 |
+
### CLI:
|
63 |
+
```bash
|
64 |
+
llama-cli --hf-repo Recouper/Qwen3-42B-A3B-Stranger-Thoughts-Deep20x-Abliterated-Uncensored-Q4_K_M-GGUF --hf-file qwen3-42b-a3b-stranger-thoughts-deep20x-abliterated-uncensored-q4_k_m.gguf -p "The meaning to life and the universe is"
|
65 |
+
```
|
66 |
+
|
67 |
+
### Server:
|
68 |
+
```bash
|
69 |
+
llama-server --hf-repo Recouper/Qwen3-42B-A3B-Stranger-Thoughts-Deep20x-Abliterated-Uncensored-Q4_K_M-GGUF --hf-file qwen3-42b-a3b-stranger-thoughts-deep20x-abliterated-uncensored-q4_k_m.gguf -c 2048
|
70 |
+
```
|
71 |
+
|
72 |
+
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.
|
73 |
+
|
74 |
+
Step 1: Clone llama.cpp from GitHub.
|
75 |
+
```
|
76 |
+
git clone https://github.com/ggerganov/llama.cpp
|
77 |
+
```
|
78 |
+
|
79 |
+
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).
|
80 |
+
```
|
81 |
+
cd llama.cpp && LLAMA_CURL=1 make
|
82 |
+
```
|
83 |
+
|
84 |
+
Step 3: Run inference through the main binary.
|
85 |
+
```
|
86 |
+
./llama-cli --hf-repo Recouper/Qwen3-42B-A3B-Stranger-Thoughts-Deep20x-Abliterated-Uncensored-Q4_K_M-GGUF --hf-file qwen3-42b-a3b-stranger-thoughts-deep20x-abliterated-uncensored-q4_k_m.gguf -p "The meaning to life and the universe is"
|
87 |
+
```
|
88 |
+
or
|
89 |
+
```
|
90 |
+
./llama-server --hf-repo Recouper/Qwen3-42B-A3B-Stranger-Thoughts-Deep20x-Abliterated-Uncensored-Q4_K_M-GGUF --hf-file qwen3-42b-a3b-stranger-thoughts-deep20x-abliterated-uncensored-q4_k_m.gguf -c 2048
|
91 |
+
```
|