Text Generation
Safetensors
English
qwen3.5
code
tool-calling
lora
sft
dpo
unsloth
reasoning
chain-of-thought
conversational
Instructions to use danielcherubini/Qwen3.5-DeltaCoder-9B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps
- Unsloth Studio new
How to use danielcherubini/Qwen3.5-DeltaCoder-9B 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 danielcherubini/Qwen3.5-DeltaCoder-9B 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 danielcherubini/Qwen3.5-DeltaCoder-9B to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for danielcherubini/Qwen3.5-DeltaCoder-9B to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="danielcherubini/Qwen3.5-DeltaCoder-9B", max_seq_length=2048, )
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -149,10 +149,14 @@ tokenizer = AutoTokenizer.from_pretrained("danielcherubini/Qwen3.5-DeltaCoder-9B
|
|
| 149 |
|
| 150 |
## Recommended Sampling Settings
|
| 151 |
|
| 152 |
-
|
|
| 153 |
-
|---------
|
| 154 |
-
|
|
| 155 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 156 |
|
| 157 |
> [!WARNING]
|
| 158 |
> **Do not use temperature below 0.5** — low temperatures cause deterministic looping in multi-turn agentic use.
|
|
|
|
| 149 |
|
| 150 |
## Recommended Sampling Settings
|
| 151 |
|
| 152 |
+
| Parameter | Value |
|
| 153 |
+
|-----------|-------|
|
| 154 |
+
| temperature | 0.6 |
|
| 155 |
+
| top_k | 20 |
|
| 156 |
+
| top_p | 0.95 |
|
| 157 |
+
| min_p | 0.0 |
|
| 158 |
+
| presence_penalty | 0.0 |
|
| 159 |
+
| repeat_penalty | 1.0 |
|
| 160 |
|
| 161 |
> [!WARNING]
|
| 162 |
> **Do not use temperature below 0.5** — low temperatures cause deterministic looping in multi-turn agentic use.
|