Instructions to use Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1", dtype="auto") - llama-cpp-python
How to use Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1", filename="gguf/q2_k_gguf/Qwen3.5-0.8B.Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 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 Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1:Q4_K_M # Run inference directly in the terminal: llama cli -hf Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1:Q4_K_M # Run inference directly in the terminal: llama cli -hf Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1: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 Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1: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 Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1:Q4_K_M
Use Docker
docker model run hf.co/Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1:Q4_K_M
- SGLang
How to use Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 with Ollama:
ollama run hf.co/Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1:Q4_K_M
- Unsloth Studio
How to use Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 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 Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 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 Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 to start chatting
- Pi
How to use Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1: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": "Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1: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 Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1: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 "Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1: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 Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 with Docker Model Runner:
docker model run hf.co/Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1:Q4_K_M
- Lemonade
How to use Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1:Q4_K_M
Run and chat with the model
lemonade run user.qwen3.5-0.8b-unslop-good-lora-v1-Q4_K_M
List all available models
lemonade list
docs: add model card metadata and usage notes
Browse files|
@@ -11,143 +11,42 @@ tags:
|
|
| 11 |
- rewriting
|
| 12 |
- style-transfer
|
| 13 |
- unslop
|
| 14 |
-
|
| 15 |
---
|
| 16 |
|
| 17 |
# qwen3.5-0.8b-unslop-good-lora-v1
|
| 18 |
|
| 19 |
-
|
| 20 |
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
If you want the best quality in this family, start with 4B. If you want the lightest pilot or the lowest-cost baseline, this is the one.
|
| 24 |
-
|
| 25 |
-
## Quick links
|
| 26 |
-
|
| 27 |
-
- Hub repo: [Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1](https://huggingface.co/Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1)
|
| 28 |
-
- GGUF files: [gguf/](./tree/main/gguf)
|
| 29 |
-
|
| 30 |
-
## Recommended downloads
|
| 31 |
-
|
| 32 |
-
If you just want the model files, the GGUF folder now contains only the final quantized artifacts:
|
| 33 |
-
|
| 34 |
-
- `gguf/q2_k_gguf/Qwen3.5-0.8B.Q2_K.gguf`
|
| 35 |
-
- `gguf/q4_k_m_gguf/Qwen3.5-0.8B.Q4_K_M.gguf`
|
| 36 |
-
- `gguf/q6_k_gguf/Qwen3.5-0.8B.Q6_K.gguf`
|
| 37 |
-
- `gguf/q8_0_gguf/Qwen3.5-0.8B.Q8_0.gguf`
|
| 38 |
-
|
| 39 |
-
| Format | Best for | Notes |
|
| 40 |
-
| --- | --- | --- |
|
| 41 |
-
| `q6_k` | Default local use | Best balance for the 0.8B lane |
|
| 42 |
-
| `q4_k_m` | Low-VRAM use | Smaller and faster, with a quality drop |
|
| 43 |
-
| `q8_0` | Highest quality | Largest file size, most faithful among the GGUFs |
|
| 44 |
-
| `q2_k` | Tiny / fastest | Emergency fallback only |
|
| 45 |
-
|
| 46 |
-
My practical recommendation: download `q6_k` first, then keep `q4_k_m` around if you need a smaller fallback.
|
| 47 |
-
|
| 48 |
-
## What this model is for
|
| 49 |
-
|
| 50 |
-
Use this model if you want:
|
| 51 |
-
|
| 52 |
-
- a cheap rewrite baseline
|
| 53 |
-
- a fast pilot before scaling to 2B / 4B
|
| 54 |
-
- a lightweight deployment candidate for simple cleanup tasks
|
| 55 |
-
- a comparison point for judging whether a larger model is worth the extra cost
|
| 56 |
-
|
| 57 |
-
## What it is not for
|
| 58 |
-
|
| 59 |
-
Be careful with this lane if you need:
|
| 60 |
-
|
| 61 |
-
- strict factual preservation on long inputs
|
| 62 |
-
- the strongest style fidelity in the family
|
| 63 |
-
- production-grade rewriting with minimal drift
|
| 64 |
-
|
| 65 |
-
In this family, 0.8B is the roughest member. It can do real rewrites, but it is clearly less stable than 2B and 4B.
|
| 66 |
-
|
| 67 |
-
## How it was trained
|
| 68 |
-
|
| 69 |
-
- Base model: `Qwen/Qwen3.5-0.8B`
|
| 70 |
-
- Training path: Transformers / TRL / PEFT fine-tuning on Hugging Face Jobs
|
| 71 |
-
- Dataset: `N8Programs/unslop-good`
|
| 72 |
-
- Rows used: 1000 (full training split)
|
| 73 |
-
- Objective: direct rewrite / style cleanup
|
| 74 |
-
|
| 75 |
-
## Training shape
|
| 76 |
-
|
| 77 |
-
- hardware: A10G 24GB (`a10g-large`)
|
| 78 |
-
- max_seq_length: 2048
|
| 79 |
-
- num_train_epochs: 2
|
| 80 |
-
- batch_size: 1
|
| 81 |
-
- gradient_accumulation_steps: 1
|
| 82 |
-
- learning_rate: 1e-4
|
| 83 |
-
- scheduler: cosine
|
| 84 |
-
- warmup_steps: 50
|
| 85 |
-
- LoRA rank: 8
|
| 86 |
-
- LoRA alpha: 20
|
| 87 |
-
- LoRA dropout: 0.0
|
| 88 |
-
- 4-bit loading
|
| 89 |
-
- bf16 training
|
| 90 |
-
|
| 91 |
-
## Deployment
|
| 92 |
-
|
| 93 |
-
This run is deployment-backed and live on Modal.
|
| 94 |
-
|
| 95 |
-
- Status: healthy
|
| 96 |
- Base model: `Qwen/Qwen3.5-0.8B`
|
| 97 |
-
-
|
| 98 |
-
-
|
| 99 |
-
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
-
|
| 108 |
-
-
|
| 109 |
-
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
## Full observed output on that sample
|
| 127 |
-
|
| 128 |
-
> The wind howled, rushing up from the mountainside as if the stone itself had swallowed everything. She sat at the precipice, her cloak fraying like a torn flag behind her, her gaze fixed on the valley where the last fires were flickering out one by one. Each extinguishment felt intentional—a calculated response to a doubt she couldn't articulate yet. Below, bells rang without warning, not as a call to action, but as a mournful chorus. "Don't," the man whispered, his voice thin as smoke, gripping her arm. His skin was rough against her skin; his hands moved across her cloak, then through the air. "Cross that threshold, and you cannot return." She did not look away. The chill hit her bones, making her mind sharper than before. "There was never another way," she murmured, her voice steady. "Only a path you would have chosen to pretend never existed." A thunderstorm rolled in, deep and ancient. For a split second, the sky fractured into clouds of white fire, and in that fleeting moment he caught her face. He saw her resolve, her terror turning into a fierce, burning light. It wasn't the girl he'd sworn to shield; it was the woman the world demanded.
|
| 129 |
-
|
| 130 |
-
This endpoint output is no longer a verbatim copy of the input sample; it is now an active rewrite, but with noticeable drift and truncation.
|
| 131 |
-
|
| 132 |
-
## Judgment
|
| 133 |
-
|
| 134 |
-
Blunt judgment: this is the weakest lane in the family, but it is still a real model, not a toy. It can rewrite long prose in a coherent way, just not as reliably or as naturally as the larger lanes.
|
| 135 |
-
|
| 136 |
-
Use it when you care more about cost and latency than final quality.
|
| 137 |
-
|
| 138 |
-
## Family position
|
| 139 |
-
|
| 140 |
-
- 0.8B: cheapest pilot, roughest output
|
| 141 |
-
- 2B: better balance of fidelity and fluency
|
| 142 |
-
- 4B: strongest default candidate in the small-model set
|
| 143 |
-
- 9B: useful retrain, but still not the safest long-form rewrite choice versus 4B
|
| 144 |
-
|
| 145 |
-
## Training loss vs progress
|
| 146 |
-
|
| 147 |
-
See the normalized family comparison plot below.
|
| 148 |
-
|
| 149 |
-

|
| 150 |
-
|
| 151 |
-
## Bottom line
|
| 152 |
-
|
| 153 |
-
If you want the lightest Unslop lane, this is the one to grab. If you want higher rewrite quality, scale up to the larger lanes (9B and especially 30B-A3B for quality-first use).
|
|
|
|
| 11 |
- rewriting
|
| 12 |
- style-transfer
|
| 13 |
- unslop
|
| 14 |
+
pipeline_tag: text-generation
|
| 15 |
---
|
| 16 |
|
| 17 |
# qwen3.5-0.8b-unslop-good-lora-v1
|
| 18 |
|
| 19 |
+
Unslop rewrite adapter focused on reducing hype/corporate phrasing while preserving meaning.
|
| 20 |
|
| 21 |
+
## Model summary
|
| 22 |
+
- Repo: `Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
- Base model: `Qwen/Qwen3.5-0.8B`
|
| 24 |
+
- Adapter type: LoRA
|
| 25 |
+
- Pipeline: text generation / rewrite style transfer
|
| 26 |
+
- Current downloads (snapshot): 215
|
| 27 |
+
|
| 28 |
+
## Intended use
|
| 29 |
+
- Rewrite AI-sounding drafts into cleaner, more natural prose.
|
| 30 |
+
- Keep meaning and key facts intact.
|
| 31 |
+
- Use as a post-processing layer for longform and social text cleanup.
|
| 32 |
+
|
| 33 |
+
## Limitations
|
| 34 |
+
- Can still over-rewrite some passages.
|
| 35 |
+
- Not guaranteed to improve factual accuracy.
|
| 36 |
+
- Should be human-reviewed for fidelity-sensitive outputs.
|
| 37 |
+
|
| 38 |
+
## Evaluation notes
|
| 39 |
+
This card records this model as part of the Unslop family with a common quality goal: preserve meaning, reduce hype, and avoid hallucinated additions.
|
| 40 |
+
|
| 41 |
+
## Usage (PEFT)
|
| 42 |
+
```python
|
| 43 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 44 |
+
from peft import PeftModel
|
| 45 |
+
|
| 46 |
+
base = "Qwen/Qwen3.5-0.8B"
|
| 47 |
+
adapter = "Oysiyl/qwen3.5-0.8b-unslop-good-lora-v1"
|
| 48 |
+
|
| 49 |
+
tokenizer = AutoTokenizer.from_pretrained(base, trust_remote_code=True)
|
| 50 |
+
base_model = AutoModelForCausalLM.from_pretrained(base, trust_remote_code=True, device_map="auto")
|
| 51 |
+
model = PeftModel.from_pretrained(base_model, adapter)
|
| 52 |
+
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|