Image-Text-to-Text
Transformers
GGUF
text-generation-inference
unsloth
qwen3_5
reasoning
chain-of-thought
agent
sft
code
biology
chemistry
conversational
Instructions to use dlindsey/Qwopus3.5-27B-v3.5-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dlindsey/Qwopus3.5-27B-v3.5-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="dlindsey/Qwopus3.5-27B-v3.5-GGUF") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("dlindsey/Qwopus3.5-27B-v3.5-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use dlindsey/Qwopus3.5-27B-v3.5-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 dlindsey/Qwopus3.5-27B-v3.5-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf dlindsey/Qwopus3.5-27B-v3.5-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 dlindsey/Qwopus3.5-27B-v3.5-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf dlindsey/Qwopus3.5-27B-v3.5-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 dlindsey/Qwopus3.5-27B-v3.5-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf dlindsey/Qwopus3.5-27B-v3.5-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 dlindsey/Qwopus3.5-27B-v3.5-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf dlindsey/Qwopus3.5-27B-v3.5-GGUF:Q4_K_M
Use Docker
docker model run hf.co/dlindsey/Qwopus3.5-27B-v3.5-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use dlindsey/Qwopus3.5-27B-v3.5-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "dlindsey/Qwopus3.5-27B-v3.5-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "dlindsey/Qwopus3.5-27B-v3.5-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/dlindsey/Qwopus3.5-27B-v3.5-GGUF:Q4_K_M
- SGLang
How to use dlindsey/Qwopus3.5-27B-v3.5-GGUF 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 "dlindsey/Qwopus3.5-27B-v3.5-GGUF" \ --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": "dlindsey/Qwopus3.5-27B-v3.5-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "dlindsey/Qwopus3.5-27B-v3.5-GGUF" \ --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": "dlindsey/Qwopus3.5-27B-v3.5-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Ollama
How to use dlindsey/Qwopus3.5-27B-v3.5-GGUF with Ollama:
ollama run hf.co/dlindsey/Qwopus3.5-27B-v3.5-GGUF:Q4_K_M
- Unsloth Studio
How to use dlindsey/Qwopus3.5-27B-v3.5-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 dlindsey/Qwopus3.5-27B-v3.5-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 dlindsey/Qwopus3.5-27B-v3.5-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for dlindsey/Qwopus3.5-27B-v3.5-GGUF to start chatting
- Pi
How to use dlindsey/Qwopus3.5-27B-v3.5-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dlindsey/Qwopus3.5-27B-v3.5-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": "dlindsey/Qwopus3.5-27B-v3.5-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use dlindsey/Qwopus3.5-27B-v3.5-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dlindsey/Qwopus3.5-27B-v3.5-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 "dlindsey/Qwopus3.5-27B-v3.5-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 dlindsey/Qwopus3.5-27B-v3.5-GGUF with Docker Model Runner:
docker model run hf.co/dlindsey/Qwopus3.5-27B-v3.5-GGUF:Q4_K_M
- Lemonade
How to use dlindsey/Qwopus3.5-27B-v3.5-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull dlindsey/Qwopus3.5-27B-v3.5-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwopus3.5-27B-v3.5-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use dlindsey/Qwopus3.5-27B-v3.5-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 dlindsey/Qwopus3.5-27B-v3.5-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 dlindsey/Qwopus3.5-27B-v3.5-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
Duplicate from Jackrong/Qwopus3.5-27B-v3.5-GGUF
Browse filesCo-authored-by: Jackrong <Jackrong@users.noreply.huggingface.co>
- .gitattributes +47 -0
- Qwopus3.5-27B-v3.5-BF16.gguf +3 -0
- Qwopus3.5-27B-v3.5-IQ4_XS.gguf +3 -0
- Qwopus3.5-27B-v3.5-Q2_K.gguf +3 -0
- Qwopus3.5-27B-v3.5-Q3_K_M.gguf +3 -0
- Qwopus3.5-27B-v3.5-Q3_K_S.gguf +3 -0
- Qwopus3.5-27B-v3.5-Q4_K_M.gguf +3 -0
- Qwopus3.5-27B-v3.5-Q4_K_S.gguf +3 -0
- Qwopus3.5-27B-v3.5-Q5_K_M.gguf +3 -0
- Qwopus3.5-27B-v3.5-Q5_K_S.gguf +3 -0
- Qwopus3.5-27B-v3.5-Q6_K.gguf +3 -0
- Qwopus3.5-27B-v3.5-Q8_0.gguf +3 -0
- README.md +216 -0
- mmproj.gguf +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
Qwopus3.5-27B-v3.5-BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwopus3.5-27B-v3.5-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwopus3.5-27B-v3.5-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwopus3.5-27B-v3.5-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwopus3.5-27B-v3.5-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwopus3.5-27B-v3.5-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
mmproj.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwopus3.5-27B-v3.5-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwopus3.5-27B-v3.5-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwopus3.5-27B-v3.5-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwopus3.5-27B-v3.5-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwopus3.5-27B-v3.5-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwopus3.5-27B-v3.5-BF16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c32336a335a9ee80e17cbdce82616fa28eba0dc7eb05fce222f18d52ff607bb
|
| 3 |
+
size 53808277408
|
Qwopus3.5-27B-v3.5-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6fb66f7951955967d9bc3f0c17d8265048572a6dbb1a0d3c0f42946aa7355bb2
|
| 3 |
+
size 15193913248
|
Qwopus3.5-27B-v3.5-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cdcdf932eb1c83871ad8b3739406110dfe35f458fa784f4da506429d8ae913d1
|
| 3 |
+
size 10711660448
|
Qwopus3.5-27B-v3.5-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17a061e213c09cd307dd2962e4ccfb575c9ec8bb486e3d187f5f0662b816d5f5
|
| 3 |
+
size 13301438368
|
Qwopus3.5-27B-v3.5-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c2d6cf0ccd817b920d2625c341d87ecf5483993a360eef0d8dbbf3b7031d018
|
| 3 |
+
size 12073949088
|
Qwopus3.5-27B-v3.5-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97ff253e19f262b90b85786a39d9a0cb2269e3d5b40a087a01251f0c68916265
|
| 3 |
+
size 16547395488
|
Qwopus3.5-27B-v3.5-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad757708ffaa226c42151bdde003a978d937e0b9fce6991378a612caa87caa2a
|
| 3 |
+
size 15586310048
|
Qwopus3.5-27B-v3.5-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac93729f3fed093a62fd8859e37a32c91da8781b1d42611d6fc60d7f2d3be2cb
|
| 3 |
+
size 19231094688
|
Qwopus3.5-27B-v3.5-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d13a26c380a976db745ccb806e960c3ab3c4d711117ccf802e1a865930b5df39
|
| 3 |
+
size 18679609248
|
Qwopus3.5-27B-v3.5-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60663ecbf010e267e2b0ce17c204bd5c16138176d88e00b31fb9d5dd1bc4dda1
|
| 3 |
+
size 22082525088
|
Qwopus3.5-27B-v3.5-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3bb609ac46f14ea725130bfe77f54475fe6e9f0eaa6d24f53a755af8b320da8
|
| 3 |
+
size 28595759008
|
README.md
ADDED
|
@@ -0,0 +1,216 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/Qwen3.5-27B
|
| 3 |
+
tags:
|
| 4 |
+
- text-generation-inference
|
| 5 |
+
- transformers
|
| 6 |
+
- unsloth
|
| 7 |
+
- qwen3_5
|
| 8 |
+
- reasoning
|
| 9 |
+
- chain-of-thought
|
| 10 |
+
- agent
|
| 11 |
+
- sft
|
| 12 |
+
- code
|
| 13 |
+
- biology
|
| 14 |
+
- chemistry
|
| 15 |
+
license: apache-2.0
|
| 16 |
+
language:
|
| 17 |
+
- en
|
| 18 |
+
- zh
|
| 19 |
+
- ko
|
| 20 |
+
- ja
|
| 21 |
+
- es
|
| 22 |
+
pipeline_tag: image-text-to-text
|
| 23 |
+
---
|
| 24 |
+
|
| 25 |
+
# 🌟 Qwopus3.5-27B-v3.5
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+

|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
## 💡 Model Overview & v3.5 Design
|
| 33 |
+
|
| 34 |
+
Qwopus3.5-27B-v3.5 is a **data-scaled continuation** of the Qwopus3.5-27B-v3 model.
|
| 35 |
+
|
| 36 |
+
The training data in v3.5 is expanded to cover a broader range of domains, including mathematics, programming,puzzle-solving,multilingual dialogue,instruction-following, muti-turn interactions,and STEM-related tasks.
|
| 37 |
+
|
| 38 |
+
---
|
| 39 |
+
|
| 40 |
+
Qwopus3.5-27B-v3.5 is a reasoning-enhanced model based on **Qwen3.5-27B**, designed for:
|
| 41 |
+
|
| 42 |
+
- 🧩 Structured reasoning
|
| 43 |
+
- 🔧 Tool-augmented workflows
|
| 44 |
+
- 🔁 Multi-step agentic tasks
|
| 45 |
+
- ⚡ Token-efficient inference
|
| 46 |
+
|
| 47 |
+
Compared with Qwopus3.5-v3, **3.5 version does not introduce a new architecture, RL stage, or template redesign**.
|
| 48 |
+
|
| 49 |
+
This version is trained with approximately **2× more SFT data**.
|
| 50 |
+
|
| 51 |
+
---
|
| 52 |
+
|
| 53 |
+
## 🎯 Motivation & Generalization Insight
|
| 54 |
+
|
| 55 |
+
The motivation behind v3.5 comes from a simple observation:
|
| 56 |
+
|
| 57 |
+
> This work is motivated by the hypothesis that scaling high-quality SFT data may further enhance the generalization ability of large language models.
|
| 58 |
+
|
| 59 |
+
In v3, Qwopus demonstrates that structured reasoning improves both **accuracy and efficiency**:
|
| 60 |
+
|
| 61 |
+
- Structured reasoning is more effective than simply mimicking long CoT
|
| 62 |
+
- Act-then-refine is better suited for coding and multi-step tasks
|
| 63 |
+
- Improved reasoning structure enables more reliable use of existing knowledge
|
| 64 |
+
|
| 65 |
+
|
| 66 |
+
> [!IMPORTANT]
|
| 67 |
+
>This suggests that the improvement is not simply memorization or dataset overlap. Instead, reasoning SFT helps the model:
|
| 68 |
+
> - 🧠 Better utilize existing knowledge
|
| 69 |
+
> - 🔍 Activate latent knowledge through structured reasoning
|
| 70 |
+
> - 🏗️ Learn reasoning procedures, not just output format
|
| 71 |
+
|
| 72 |
+
---
|
| 73 |
+
|
| 74 |
+
## 🔬 Supporting Evidence
|
| 75 |
+
|
| 76 |
+
Recent work:
|
| 77 |
+
|
| 78 |
+
**Ren et al., 2026 — *Rethinking Generalization in Reasoning SFT*** ([arXiv:2604.06628](https://arxiv.org/abs/2604.06628))
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
<div align="center">
|
| 82 |
+
|
| 83 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/66309bd090589b7c65950665/5ZY5R4n81okA9glcV9EJV.png" width="85%"/>
|
| 84 |
+
|
| 85 |
+
</div>
|
| 86 |
+
|
| 87 |
+
<p align="center"><em>
|
| 88 |
+
Short-epoch reasoning SFT can underestimate generalization — in-domain gains may appear early, while out-of-domain improvements often require sufficient optimization.
|
| 89 |
+
</em></p>
|
| 90 |
+
|
| 91 |
+
shows that generalization in reasoning SFT is **not fixed, but conditional** — depending on optimization, data quality, and model capability.
|
| 92 |
+
|
| 93 |
+
Key takeaways:
|
| 94 |
+
|
| 95 |
+
- Reasoning SFT can generalize when sufficiently trained (often showing a **dip → recovery** pattern)
|
| 96 |
+
- **High-quality long-CoT data** enables cross-domain transfer
|
| 97 |
+
- **Stronger models learn reasoning structure**, not just longer outputs (14B/27B/32B)
|
| 98 |
+
- Gains are **asymmetric** — reasoning improves, while safety may degrade
|
| 99 |
+
|
| 100 |
+
This suggests that reasoning SFT should be viewed as a **dynamic optimization process**, rather than a static training outcome.
|
| 101 |
+
|
| 102 |
+
---
|
| 103 |
+
|
| 104 |
+
|
| 105 |
+
### 📊 Evaluation results
|
| 106 |
+
|
| 107 |
+
|
| 108 |
+
<div align="center">
|
| 109 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/66309bd090589b7c65950665/DR9SRmTBDOl9c4S81jBdn.png" width="85%"/>
|
| 110 |
+
</div>
|
| 111 |
+
|
| 112 |
+
<p align="center"><em>
|
| 113 |
+
Reasoning-focused SFT improves multi-step reasoning tasks, while introducing mild trade-offs on alignment-sensitive benchmarks.
|
| 114 |
+
</em></p>
|
| 115 |
+
|
| 116 |
+
|
| 117 |
+
A third-party benchmark report shows that Qwopus3.5-v3 achieves strong performance across reasoning-heavy tasks, especially on:
|
| 118 |
+
|
| 119 |
+
- MATH500
|
| 120 |
+
- MMLU-Pro
|
| 121 |
+
- HumanEval
|
| 122 |
+
- GSM8K
|
| 123 |
+
- AIME-style reasoning tasks
|
| 124 |
+
|
| 125 |
+
However, the same results also suggest a **capability trade-off**: reasoning-focused SFT can improve multi-step reasoning while causing mild regressions on some alignment-sensitive or tool-oriented benchmarks.
|
| 126 |
+
|
| 127 |
+
This supports the view that Qwopus-v3 shifts the model toward **stronger reasoning efficiency and problem-solving ability**, rather than uniform gains across every benchmark.
|
| 128 |
+
|
| 129 |
+
### 🌍 Preliminary v3.5 comparison on MMLU-Pro subsets
|
| 130 |
+
|
| 131 |
+
Due to limited compute, v3.5 was evaluated on the **same 280 questions used for v3**, sampled from **7 selected MMLU-Pro categories**.
|
| 132 |
+
|
| 133 |
+
On this subset:
|
| 134 |
+
|
| 135 |
+
| Model | Correct | Total | Accuracy |
|
| 136 |
+
|--------|--------|-------|----------|
|
| 137 |
+
| **v3** | 250 | 280 | **89.29%** |
|
| 138 |
+
| **v3.5** | 253 | 280 | **✅ 90.36%** |
|
| 139 |
+
|
| 140 |
+
**✅ Gain:** **+1.07 percentage points**
|
| 141 |
+
|
| 142 |
+
This suggests that scaling SFT data in v3.5 brings a **small but measurable improvement** on the controlled MMLU-Pro subset.
|
| 143 |
+
|
| 144 |
+
Since this is not a full MMLU-Pro evaluation, the result should be viewed as a **preliminary reference**, not a definitive benchmark score.
|
| 145 |
+
|
| 146 |
+
|
| 147 |
+
### 🪐 SWE / Agentic Coding Test Report
|
| 148 |
+
|
| 149 |
+

|
| 150 |
+
|
| 151 |
+
|
| 152 |
+

|
| 153 |
+
|
| 154 |
+
|
| 155 |
+
|
| 156 |
+
Qwopus3.5-27B-v3.5 was tested on a 44-case SWE-style capability suite covering reasoning, tool calling, structured output, context handling, multilingual responses, programming, and multi-step agentic workflows.
|
| 157 |
+
|
| 158 |
+
The Q5_K_M GGUF build achieved **43 / 44 passed tests (97.7%)**, including **14 / 15 programming tasks**. The only failure was a unit-test-writing case involving incorrect pytest assertions. Compared with Qwopus3.5-27B-v3, which scored **42 / 44 (95.5%)** on the same suite, v3.5 improved by **+2.2 points**.
|
| 159 |
+
|
| 160 |
+
The most important gain is in multi-step agentic coding: v3.5 successfully read source code through a tool call, diagnosed a timezone parsing bug, and proposed a fix, while v3 failed to identify the root cause. This suggests that v3.5 is a small but meaningful upgrade over v3, especially for SWE-style workflows involving tool use, code inspection, bug diagnosis, and action planning.
|
| 161 |
+
|
| 162 |
+
> [!NOTE]
|
| 163 |
+
> Throughput differences are excluded from the model-level comparison because both runs use **Q5_K_M GGUF** builds, where quantization choices and runtime environments can affect speed.
|
| 164 |
+
> 🏷️ **Acknowledgement:** Special thanks to **Kyle Hessling** for running and sharing the SWE-style capability tests for Qwopus3.5-27B-v3.5.
|
| 165 |
+
> X / Twitter: [@KyleHessling1](https://x.com/KyleHessling1)
|
| 166 |
+
|
| 167 |
+
---
|
| 168 |
+
## 📚 Resources & Guides
|
| 169 |
+
|
| 170 |
+
👉 **[GitHub Repository: Jackrong-llm-finetuning-guide](https://github.com/R6410418/Jackrong-llm-finetuning-guide.git)**
|
| 171 |
+
Visit the repo to dive into the codebase and reproduce the results locally or on Colab.
|
| 172 |
+
|
| 173 |
+
### 📥 Core Technical Document
|
| 174 |
+
**🔗 [Qwopus3.5-27b Complete Fine-Tuning Guide (PDF)](https://github.com/R6410418/Jackrong-llm-finetuning-guide/blob/main/guidePDF/Qwopus3-5-27b-Colab_complete_guide_to_llm_finetuning.pdf)**
|
| 175 |
+
* **The Full Pipeline:** A step-by-step walkthrough—from downloading the base model and unifying heterogeneous data, to configuring trainer hyperparameters and publishing to Hugging Face.
|
| 176 |
+
* **Beginner Friendly:** Includes an introductory guide to getting started with Google Colab and Unsloth.
|
| 177 |
+
|
| 178 |
+
> **A Note:**
|
| 179 |
+
> My goal isn't just to detail a workflow, but to demystify LLM training. Beyond the social media hype, fine-tuning isn't an unattainable ritual—often, all you need is a Google account, a standard laptop, and relentless curiosity.
|
| 180 |
+
> All training and testing for this project were self-funded. If you find this model or guide helpful, a **Star ⭐️ on GitHub** would be the greatest encouragement. Thank you! 🙏
|
| 181 |
+
|
| 182 |
+
> [!IMPORTANT]
|
| 183 |
+
> The Claude series model optimizations are named under the **Qwopus3.5 series**, with the latest version being **🌟Qwopus3.5-v3.5**.
|
| 184 |
+
|
| 185 |
+
---
|
| 186 |
+
|
| 187 |
+
## ⚠️ Limitations
|
| 188 |
+
|
| 189 |
+
- Possible overfitting if scaling exceeds optimal regime
|
| 190 |
+
- Reasoning may still exhibit instability in edge cases
|
| 191 |
+
- Tool-calling performance depends on environment integration
|
| 192 |
+
- Not all capabilities are fully benchmarked yet
|
| 193 |
+
|
| 194 |
+
|
| 195 |
+
---
|
| 196 |
+
|
| 197 |
+
## 🙏 Acknowledgements
|
| 198 |
+
|
| 199 |
+
Special thanks to:
|
| 200 |
+
|
| 201 |
+
- Unsloth for efficient fine-tuning
|
| 202 |
+
- Open-source datasets and community contributors
|
| 203 |
+
- Researchers exploring reasoning SFT and generalization
|
| 204 |
+
|
| 205 |
+
---
|
| 206 |
+
|
| 207 |
+
## 📖 Citation
|
| 208 |
+
|
| 209 |
+
```bibtex
|
| 210 |
+
@misc{jackrong_qwopus35_v35,
|
| 211 |
+
title = {Qwopus3.5-27B-v3.5},
|
| 212 |
+
author = {Jackrong},
|
| 213 |
+
year = {2026},
|
| 214 |
+
publisher = {Hugging Face}
|
| 215 |
+
}
|
| 216 |
+
```
|
mmproj.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3d2ef8599fc6c90c0f8fe1542a25b2026052246b8b676aabffe5184e1863578
|
| 3 |
+
size 931146336
|