Unrestricted commited on
Commit
ae6a5a7
·
verified ·
1 Parent(s): c397b44

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - uncensored
5
+ - qwen3
6
+ language:
7
+ - en
8
+ - zh
9
+ base_model: Qwen/Qwen3-4B-Instruct-2507
10
+ ---
11
+
12
+ # Qwen3-4B-2507-Instruct-Uncensored-HauhauCS-Aggressive
13
+
14
+ > **[Join the Discord](https://discord.gg/SZ5vacTXYf)** for updates, roadmaps, projects, or just to chat.
15
+
16
+ Qwen3 4B 2507 Instruct uncensored by HauhauCS.
17
+
18
+ ## About
19
+
20
+ No changes to datasets or capabilities. Fully functional, 100% of what the original authors intended - just without the refusals.
21
+
22
+ These are meant to be the best lossless uncensored models out there.
23
+
24
+ ## Aggressive vs Balanced
25
+
26
+ **Aggressive** applies stronger uncensoring. Use this when you need no refusals.
27
+
28
+
29
+ ## Downloads
30
+
31
+ | File | Quant | Size |
32
+ |------|-------|------|
33
+ | Qwen3-4B-2507-Instruct-Uncensored-HauhauCS-Aggressive-FP16.gguf | FP16 | 7.5 GB |
34
+ | Qwen3-4B-2507-Instruct-Uncensored-HauhauCS-Aggressive-Q8_0.gguf | Q8_0 | 4.0 GB |
35
+ | Qwen3-4B-2507-Instruct-Uncensored-HauhauCS-Aggressive-Q6_K.gguf | Q6_K | 3.1 GB |
36
+ | Qwen3-4B-2507-Instruct-Uncensored-HauhauCS-Aggressive-Q4_K_M.gguf | Q4_K_M | 2.4 GB |
37
+
38
+ ## Specs
39
+
40
+ - 4B parameters (dense)
41
+ - 262K context
42
+ - Based on [Qwen/Qwen3-4B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-4B-Instruct-2507)
43
+
44
+ ## Recommended Settings
45
+
46
+ From the Qwen team:
47
+
48
+ **Thinking mode (default):**
49
+ - `temperature=0.6`
50
+ - `top_p=0.95`
51
+ - `top_k=20`
52
+ - `min_p=0`
53
+
54
+ **Non-thinking mode:**
55
+ - Add `/no_think` at the end of your prompt, or
56
+ - `temperature=0.7`
57
+ - `top_p=0.8`
58
+ - `top_k=20`
59
+ - `min_p=0`
60
+
61
+ **Important:**
62
+ - Use `--jinja` flag for proper chat template handling
63
+ - Thinking mode produces `<think>...</think>` tags before responses
64
+
65
+ ## Usage
66
+
67
+ Works with llama.cpp, LM Studio, Jan, koboldcpp, Ollama, etc.
68
+
69
+ ```bash
70
+ # llama.cpp example
71
+ ./llama-cli -m Qwen3-4B-2507-Instruct-Uncensored-HauhauCS-Aggressive-Q4_K_M.gguf \
72
+ -p "Hello" --jinja -c 8192
73
+ ```