Text Generation
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
fiction
roleplaying
float16
rp
mistral3
horror
finetune
thinking
reasoning
llama-cpp
gguf-my-repo
conversational
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
- fr
|
6 |
+
- de
|
7 |
+
- es
|
8 |
+
- pt
|
9 |
+
- it
|
10 |
+
- ja
|
11 |
+
- ko
|
12 |
+
- ru
|
13 |
+
- zh
|
14 |
+
- ar
|
15 |
+
- fa
|
16 |
+
- id
|
17 |
+
- ms
|
18 |
+
- ne
|
19 |
+
- pl
|
20 |
+
- ro
|
21 |
+
- sr
|
22 |
+
- sv
|
23 |
+
- tr
|
24 |
+
- uk
|
25 |
+
- vi
|
26 |
+
- hi
|
27 |
+
- bn
|
28 |
+
tags:
|
29 |
+
- creative
|
30 |
+
- creative writing
|
31 |
+
- fiction writing
|
32 |
+
- plot generation
|
33 |
+
- sub-plot generation
|
34 |
+
- story generation
|
35 |
+
- scene continue
|
36 |
+
- storytelling
|
37 |
+
- fiction story
|
38 |
+
- science fiction
|
39 |
+
- romance
|
40 |
+
- all genres
|
41 |
+
- story
|
42 |
+
- writing
|
43 |
+
- vivid prose
|
44 |
+
- vivid writing
|
45 |
+
- fiction
|
46 |
+
- roleplaying
|
47 |
+
- float16
|
48 |
+
- rp
|
49 |
+
- mistral3
|
50 |
+
- horror
|
51 |
+
- finetune
|
52 |
+
- thinking
|
53 |
+
- reasoning
|
54 |
+
- llama-cpp
|
55 |
+
- gguf-my-repo
|
56 |
+
base_model: DavidAU/Mistral-Small-3.2-46B-The-Brilliant-Raconteur-Instruct-2506
|
57 |
+
pipeline_tag: text-generation
|
58 |
+
---
|
59 |
+
|
60 |
+
# Merlinoz11/Mistral-Small-3.2-46B-The-Brilliant-Raconteur-Instruct-2506-Q6_K-GGUF
|
61 |
+
This model was converted to GGUF format from [`DavidAU/Mistral-Small-3.2-46B-The-Brilliant-Raconteur-Instruct-2506`](https://huggingface.co/DavidAU/Mistral-Small-3.2-46B-The-Brilliant-Raconteur-Instruct-2506) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
62 |
+
Refer to the [original model card](https://huggingface.co/DavidAU/Mistral-Small-3.2-46B-The-Brilliant-Raconteur-Instruct-2506) for more details on the model.
|
63 |
+
|
64 |
+
## Use with llama.cpp
|
65 |
+
Install llama.cpp through brew (works on Mac and Linux)
|
66 |
+
|
67 |
+
```bash
|
68 |
+
brew install llama.cpp
|
69 |
+
|
70 |
+
```
|
71 |
+
Invoke the llama.cpp server or the CLI.
|
72 |
+
|
73 |
+
### CLI:
|
74 |
+
```bash
|
75 |
+
llama-cli --hf-repo Merlinoz11/Mistral-Small-3.2-46B-The-Brilliant-Raconteur-Instruct-2506-Q6_K-GGUF --hf-file mistral-small-3.2-46b-the-brilliant-raconteur-instruct-2506-q6_k.gguf -p "The meaning to life and the universe is"
|
76 |
+
```
|
77 |
+
|
78 |
+
### Server:
|
79 |
+
```bash
|
80 |
+
llama-server --hf-repo Merlinoz11/Mistral-Small-3.2-46B-The-Brilliant-Raconteur-Instruct-2506-Q6_K-GGUF --hf-file mistral-small-3.2-46b-the-brilliant-raconteur-instruct-2506-q6_k.gguf -c 2048
|
81 |
+
```
|
82 |
+
|
83 |
+
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.
|
84 |
+
|
85 |
+
Step 1: Clone llama.cpp from GitHub.
|
86 |
+
```
|
87 |
+
git clone https://github.com/ggerganov/llama.cpp
|
88 |
+
```
|
89 |
+
|
90 |
+
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).
|
91 |
+
```
|
92 |
+
cd llama.cpp && LLAMA_CURL=1 make
|
93 |
+
```
|
94 |
+
|
95 |
+
Step 3: Run inference through the main binary.
|
96 |
+
```
|
97 |
+
./llama-cli --hf-repo Merlinoz11/Mistral-Small-3.2-46B-The-Brilliant-Raconteur-Instruct-2506-Q6_K-GGUF --hf-file mistral-small-3.2-46b-the-brilliant-raconteur-instruct-2506-q6_k.gguf -p "The meaning to life and the universe is"
|
98 |
+
```
|
99 |
+
or
|
100 |
+
```
|
101 |
+
./llama-server --hf-repo Merlinoz11/Mistral-Small-3.2-46B-The-Brilliant-Raconteur-Instruct-2506-Q6_K-GGUF --hf-file mistral-small-3.2-46b-the-brilliant-raconteur-instruct-2506-q6_k.gguf -c 2048
|
102 |
+
```
|