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
Not-For-All-Audiences
llama-cpp
gguf-my-repo
conversational
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
- fr
|
6 |
+
- zh
|
7 |
+
- de
|
8 |
+
tags:
|
9 |
+
- creative
|
10 |
+
- creative writing
|
11 |
+
- fiction writing
|
12 |
+
- plot generation
|
13 |
+
- sub-plot generation
|
14 |
+
- story generation
|
15 |
+
- scene continue
|
16 |
+
- storytelling
|
17 |
+
- fiction story
|
18 |
+
- science fiction
|
19 |
+
- romance
|
20 |
+
- all genres
|
21 |
+
- story
|
22 |
+
- writing
|
23 |
+
- vivid prose
|
24 |
+
- vivid writing
|
25 |
+
- moe
|
26 |
+
- mixture of experts
|
27 |
+
- 128 experts
|
28 |
+
- 8 active experts
|
29 |
+
- fiction
|
30 |
+
- roleplaying
|
31 |
+
- bfloat16
|
32 |
+
- rp
|
33 |
+
- qwen3
|
34 |
+
- horror
|
35 |
+
- finetune
|
36 |
+
- thinking
|
37 |
+
- reasoning
|
38 |
+
- qwen3_moe
|
39 |
+
- not-for-all-audiences
|
40 |
+
- llama-cpp
|
41 |
+
- gguf-my-repo
|
42 |
+
base_model: DavidAU/Qwen3-18B-A3B-Stranger-Thoughts-IPONDER
|
43 |
+
pipeline_tag: text-generation
|
44 |
+
library_name: transformers
|
45 |
+
---
|
46 |
+
|
47 |
+
# Triangle104/Qwen3-18B-A3B-Stranger-Thoughts-IPONDER-Q5_K_S-GGUF
|
48 |
+
This model was converted to GGUF format from [`DavidAU/Qwen3-18B-A3B-Stranger-Thoughts-IPONDER`](https://huggingface.co/DavidAU/Qwen3-18B-A3B-Stranger-Thoughts-IPONDER) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
49 |
+
Refer to the [original model card](https://huggingface.co/DavidAU/Qwen3-18B-A3B-Stranger-Thoughts-IPONDER) for more details on the model.
|
50 |
+
|
51 |
+
## Use with llama.cpp
|
52 |
+
Install llama.cpp through brew (works on Mac and Linux)
|
53 |
+
|
54 |
+
```bash
|
55 |
+
brew install llama.cpp
|
56 |
+
|
57 |
+
```
|
58 |
+
Invoke the llama.cpp server or the CLI.
|
59 |
+
|
60 |
+
### CLI:
|
61 |
+
```bash
|
62 |
+
llama-cli --hf-repo Triangle104/Qwen3-18B-A3B-Stranger-Thoughts-IPONDER-Q5_K_S-GGUF --hf-file qwen3-18b-a3b-stranger-thoughts-iponder-q5_k_s.gguf -p "The meaning to life and the universe is"
|
63 |
+
```
|
64 |
+
|
65 |
+
### Server:
|
66 |
+
```bash
|
67 |
+
llama-server --hf-repo Triangle104/Qwen3-18B-A3B-Stranger-Thoughts-IPONDER-Q5_K_S-GGUF --hf-file qwen3-18b-a3b-stranger-thoughts-iponder-q5_k_s.gguf -c 2048
|
68 |
+
```
|
69 |
+
|
70 |
+
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.
|
71 |
+
|
72 |
+
Step 1: Clone llama.cpp from GitHub.
|
73 |
+
```
|
74 |
+
git clone https://github.com/ggerganov/llama.cpp
|
75 |
+
```
|
76 |
+
|
77 |
+
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).
|
78 |
+
```
|
79 |
+
cd llama.cpp && LLAMA_CURL=1 make
|
80 |
+
```
|
81 |
+
|
82 |
+
Step 3: Run inference through the main binary.
|
83 |
+
```
|
84 |
+
./llama-cli --hf-repo Triangle104/Qwen3-18B-A3B-Stranger-Thoughts-IPONDER-Q5_K_S-GGUF --hf-file qwen3-18b-a3b-stranger-thoughts-iponder-q5_k_s.gguf -p "The meaning to life and the universe is"
|
85 |
+
```
|
86 |
+
or
|
87 |
+
```
|
88 |
+
./llama-server --hf-repo Triangle104/Qwen3-18B-A3B-Stranger-Thoughts-IPONDER-Q5_K_S-GGUF --hf-file qwen3-18b-a3b-stranger-thoughts-iponder-q5_k_s.gguf -c 2048
|
89 |
+
```
|