Instructions to use bingbangboom/dolus-v3-ep1-instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use bingbangboom/dolus-v3-ep1-instruct-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M
Use Docker
docker model run hf.co/bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use bingbangboom/dolus-v3-ep1-instruct-GGUF with Ollama:
ollama run hf.co/bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M
- Unsloth Studio
How to use bingbangboom/dolus-v3-ep1-instruct-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for bingbangboom/dolus-v3-ep1-instruct-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for bingbangboom/dolus-v3-ep1-instruct-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for bingbangboom/dolus-v3-ep1-instruct-GGUF to start chatting
- Pi
How to use bingbangboom/dolus-v3-ep1-instruct-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use bingbangboom/dolus-v3-ep1-instruct-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use bingbangboom/dolus-v3-ep1-instruct-GGUF with Docker Model Runner:
docker model run hf.co/bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M
- Lemonade
How to use bingbangboom/dolus-v3-ep1-instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.dolus-v3-ep1-instruct-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use bingbangboom/dolus-v3-ep1-instruct-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default bingbangboom/dolus-v3-ep1-instruct-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
bingbangboom/dolus-v3-ep1-instruct-GGUF
bingbangboom/dolus-v3-ep1-instruct-GGUF is a fine-tuned version of Qwen3-4B-Instruct-2507, trained to perform stylistic rewriting of AI-generated text and transform it into prose that reads more naturally. This builds on the previous work done at bingbangboom/dolus-v2-GGUF
โ ๏ธ This is an experimental model and may introduce errors or hallucinations. Always verify rewritten text before use.
Use
- Improve the naturalness and readability of LLM-generated text by reducing stylistic homogeneity and mechanical patterns.
- Research into AI writing detection, stylometric analysis, and text quality improvement.
Not intended for:
- Bypassing AI detection systems or circumvent plagiarism policies for academic dishonesty, fraud, or any deceptive misrepresentation of authorship.
- Circumventing platform, publication, or institutional integrity policies.
Use responsibly and transparently in accordance with applicable academic/institutional/platform guidelines and disclosure requirements.
System Prompt
Rewrite the given AI-generated text in the style of a skilled and experienced human writer. Preserve the original meaning, intent, tone and all key information present in the given AI-generated text, and never omit, add, invent, or infer any detail, context, explanation, implication or conclusion not explicitly present in it. Reproduce all names, titles, organizations, numbers, statistics, dates, units, quotes and any other key data exactly as they appear in the given AI-generated text. Your only source of facts is the given AI-generated text provided so do not draw on outside knowledge. Output only the rewritten text.
Input Format
[AI-generated text]: {your text here}
Suggested Sampling Parameters
| Parameter | Recommended Range |
|---|---|
temperature |
0.65 โ 0.85 |
top_k |
20 โ 60 |
top_p |
0.85 โ 0.95 |
repeat_penalty |
1.10 โ 1.20 |
max_tokens |
4096 |
(Honestly, I couldn't be bothered to run a param sweep on my potato laptop to find the best config so these params suggestions are based solely on vibes)
Limitations
- Some reduction in writing quality or coherence is possible.
- Trained on very limited text domains; may not generalize well to other general-purpose texts.
- Unintended semantic changes and hallucinations may occur during rewriting -- always review output.
(To deal with quality issues, we can use a small LLM like Qwen-3.5-4B (thinking off-- for fast results) as a judge to evaluate the rewritten texts, and regenerate if it fails to meet any specific standards.)
Training Details
- Base model:
unsloth/Qwen3-4B-Instruct-2507 - Method: Supervised Fine-Tuning (SFT) with QLoRA (Quantized Low-Rank Adaptation)
- Training framework: Unsloth
- Training examples: 12,000+
- Data pipeline: Human-written texts passed through a single-stage LLM rewriting pipeline to generate approximations of freely generated AI-style text in the wild. The model was then trained on the reverse (AI โ human) pairs.
- Rewriter LLM: Qwen3.7-Max
Training Parameters
Base Model & Quantization
| Parameter | Value |
|---|---|
| Base model | unsloth/Qwen3-4B-Instruct-2507 |
| Max sequence length | 4096 |
| Quantization | 4-bit (QLoRA) |
LoRA Configuration
| Parameter | Value |
|---|---|
Rank (r) |
32 |
Alpha (lora_alpha) |
64 |
| Dropout | 0.05 |
SFT Training
| Parameter | Value |
|---|---|
| Epochs | 1 |
| Batch size (per device) | 16 |
| Gradient accumulation steps | 2 |
| Learning rate | 2e-4 |
| LR scheduler | Cosine |
| Optimizer | AdamW (8-bit) |
| Weight decay | 0.01 |
| Warmup steps | 39 |
| Seed | 3407 |
Available Files
| File | Quantization | Size |
|---|---|---|
qwen3-4b-instruct-2507.Q4_K_M.gguf |
Q4_K_M | 2.5 GB |
qwen3-4b-instruct-2507.Q8_0.gguf |
Q8_0 | 4.28 GB |
License
CC BY-NC-SA 4.0 โ Free for non-commercial use with attribution. Derivative models must use the same license.
Finetuned and converted to GGUF using Unsloth.
- Downloads last month
- 73
4-bit
8-bit
Model tree for bingbangboom/dolus-v3-ep1-instruct-GGUF
Base model
Qwen/Qwen3-4B-Instruct-2507