Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: Delta-Vector/Hamanasu-Magnum-QwQ-32B
|
3 |
+
datasets:
|
4 |
+
- NewEden/Orion-LIT
|
5 |
+
- NewEden/Orion-Asstr-Stories-16K
|
6 |
+
- Mielikki/Erebus-87k
|
7 |
+
- NewEden/RP-logs-V2-Experimental-prefixed
|
8 |
+
- NewEden/Creative_Writing-Complexity
|
9 |
+
- NewEden/Discord-Filtered
|
10 |
+
- NewEden/DeepseekRP-Filtered
|
11 |
+
- NewEden/Storium-Prefixed-Clean
|
12 |
+
- NewEden/Basket-Weaving-Filtered
|
13 |
+
- NewEden/LIMARP-Complexity
|
14 |
+
- NewEden/Misc-Data-Sharegpt-Prefixed
|
15 |
+
- NewEden/BlueSky-10K-Complexity
|
16 |
+
- NewEden/OpenCAI-ShareGPT
|
17 |
+
- NewEden/Basket-Weaving-Filtered
|
18 |
+
- PocketDoc/Dans-Personamaxx-VN
|
19 |
+
- PocketDoc/Dans-Kinomaxx-VanillaBackrooms
|
20 |
+
- PocketDoc/Dans-Personamaxx-Logs
|
21 |
+
- anthracite-org/kalo-opus-instruct-22k-no-refusal
|
22 |
+
- lodrick-the-lafted/kalo-opus-instruct-3k-filtered
|
23 |
+
- anthracite-org/nopm_claude_writing_fixed
|
24 |
+
- anthracite-org/kalo_opus_misc_240827
|
25 |
+
- anthracite-org/kalo_misc_part2
|
26 |
+
- NewEden/Claude-Instruct-5K
|
27 |
+
- NewEden/Claude-Instruct-2.7K
|
28 |
+
tags:
|
29 |
+
- qwen
|
30 |
+
- roleplay
|
31 |
+
- finetune
|
32 |
+
- storywriting
|
33 |
+
- llama-cpp
|
34 |
+
- gguf-my-repo
|
35 |
+
thumbnail: https://cdn-uploads.huggingface.co/production/uploads/66c26b6fb01b19d8c3c2467b/jg2NWmCUfPyzizm2USjMt.jpeg
|
36 |
+
---
|
37 |
+
|
38 |
+
# ThijsL202/Hamanasu-Magnum-QwQ-32B-Q6_K-GGUF
|
39 |
+
This model was converted to GGUF format from [`Delta-Vector/Hamanasu-Magnum-QwQ-32B`](https://huggingface.co/Delta-Vector/Hamanasu-Magnum-QwQ-32B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
40 |
+
Refer to the [original model card](https://huggingface.co/Delta-Vector/Hamanasu-Magnum-QwQ-32B) for more details on the model.
|
41 |
+
|
42 |
+
## Use with llama.cpp
|
43 |
+
Install llama.cpp through brew (works on Mac and Linux)
|
44 |
+
|
45 |
+
```bash
|
46 |
+
brew install llama.cpp
|
47 |
+
|
48 |
+
```
|
49 |
+
Invoke the llama.cpp server or the CLI.
|
50 |
+
|
51 |
+
### CLI:
|
52 |
+
```bash
|
53 |
+
llama-cli --hf-repo ThijsL202/Hamanasu-Magnum-QwQ-32B-Q6_K-GGUF --hf-file hamanasu-magnum-qwq-32b-q6_k.gguf -p "The meaning to life and the universe is"
|
54 |
+
```
|
55 |
+
|
56 |
+
### Server:
|
57 |
+
```bash
|
58 |
+
llama-server --hf-repo ThijsL202/Hamanasu-Magnum-QwQ-32B-Q6_K-GGUF --hf-file hamanasu-magnum-qwq-32b-q6_k.gguf -c 2048
|
59 |
+
```
|
60 |
+
|
61 |
+
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.
|
62 |
+
|
63 |
+
Step 1: Clone llama.cpp from GitHub.
|
64 |
+
```
|
65 |
+
git clone https://github.com/ggerganov/llama.cpp
|
66 |
+
```
|
67 |
+
|
68 |
+
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).
|
69 |
+
```
|
70 |
+
cd llama.cpp && LLAMA_CURL=1 make
|
71 |
+
```
|
72 |
+
|
73 |
+
Step 3: Run inference through the main binary.
|
74 |
+
```
|
75 |
+
./llama-cli --hf-repo ThijsL202/Hamanasu-Magnum-QwQ-32B-Q6_K-GGUF --hf-file hamanasu-magnum-qwq-32b-q6_k.gguf -p "The meaning to life and the universe is"
|
76 |
+
```
|
77 |
+
or
|
78 |
+
```
|
79 |
+
./llama-server --hf-repo ThijsL202/Hamanasu-Magnum-QwQ-32B-Q6_K-GGUF --hf-file hamanasu-magnum-qwq-32b-q6_k.gguf -c 2048
|
80 |
+
```
|