Instructions to use Mungert/SWE-Dev-32B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Mungert/SWE-Dev-32B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Mungert/SWE-Dev-32B-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Mungert/SWE-Dev-32B-GGUF", dtype="auto") - llama-cpp-python
How to use Mungert/SWE-Dev-32B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Mungert/SWE-Dev-32B-GGUF", filename="SWE-Dev-32B-bf16_q8_0.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 Mungert/SWE-Dev-32B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Mungert/SWE-Dev-32B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Mungert/SWE-Dev-32B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Mungert/SWE-Dev-32B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Mungert/SWE-Dev-32B-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 Mungert/SWE-Dev-32B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Mungert/SWE-Dev-32B-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 Mungert/SWE-Dev-32B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Mungert/SWE-Dev-32B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Mungert/SWE-Dev-32B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Mungert/SWE-Dev-32B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Mungert/SWE-Dev-32B-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": "Mungert/SWE-Dev-32B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Mungert/SWE-Dev-32B-GGUF:Q4_K_M
- SGLang
How to use Mungert/SWE-Dev-32B-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 "Mungert/SWE-Dev-32B-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": "Mungert/SWE-Dev-32B-GGUF", "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 "Mungert/SWE-Dev-32B-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": "Mungert/SWE-Dev-32B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use Mungert/SWE-Dev-32B-GGUF with Ollama:
ollama run hf.co/Mungert/SWE-Dev-32B-GGUF:Q4_K_M
- Unsloth Studio
How to use Mungert/SWE-Dev-32B-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 Mungert/SWE-Dev-32B-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 Mungert/SWE-Dev-32B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Mungert/SWE-Dev-32B-GGUF to start chatting
- Pi
How to use Mungert/SWE-Dev-32B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Mungert/SWE-Dev-32B-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": "Mungert/SWE-Dev-32B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Mungert/SWE-Dev-32B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Mungert/SWE-Dev-32B-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 Mungert/SWE-Dev-32B-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use Mungert/SWE-Dev-32B-GGUF with Docker Model Runner:
docker model run hf.co/Mungert/SWE-Dev-32B-GGUF:Q4_K_M
- Lemonade
How to use Mungert/SWE-Dev-32B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Mungert/SWE-Dev-32B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.SWE-Dev-32B-GGUF-Q4_K_M
List all available models
lemonade list
Commit ·
bd38b1a
verified ·
0
Parent(s):
Super-squash history to reclaim storage
Browse files- .gitattributes +81 -0
- README.md +121 -0
- SWE-Dev-32B-bf16_q8_0.gguf +3 -0
- SWE-Dev-32B-f16_q8_0.gguf +3 -0
- SWE-Dev-32B-iq1_m.gguf +3 -0
- SWE-Dev-32B-iq1_s.gguf +3 -0
- SWE-Dev-32B-iq2_m.gguf +3 -0
- SWE-Dev-32B-iq2_s.gguf +3 -0
- SWE-Dev-32B-iq2_xs.gguf +3 -0
- SWE-Dev-32B-iq2_xxs.gguf +3 -0
- SWE-Dev-32B-iq3_m.gguf +3 -0
- SWE-Dev-32B-iq3_s.gguf +3 -0
- SWE-Dev-32B-iq3_xs.gguf +3 -0
- SWE-Dev-32B-iq3_xxs.gguf +3 -0
- SWE-Dev-32B-iq4_nl.gguf +3 -0
- SWE-Dev-32B-iq4_xs.gguf +3 -0
- SWE-Dev-32B-q2_k_m.gguf +3 -0
- SWE-Dev-32B-q2_k_s.gguf +3 -0
- SWE-Dev-32B-q3_k_m.gguf +3 -0
- SWE-Dev-32B-q3_k_s.gguf +3 -0
- SWE-Dev-32B-q4_0.gguf +3 -0
- SWE-Dev-32B-q4_1.gguf +3 -0
- SWE-Dev-32B-q4_k_m.gguf +3 -0
- SWE-Dev-32B-q4_k_s.gguf +3 -0
- SWE-Dev-32B-q5_0.gguf +3 -0
- SWE-Dev-32B-q5_1.gguf +3 -0
- SWE-Dev-32B-q5_k_m.gguf +3 -0
- SWE-Dev-32B-q5_k_s.gguf +3 -0
- SWE-Dev-32B-q6_k_m.gguf +3 -0
- SWE-Dev-32B-q8_0.gguf +3 -0
- SWE-Dev-32B.imatrix +3 -0
- bf16/SWE-Dev-32B-bf16-00001-of-00002.gguf +3 -0
- bf16/SWE-Dev-32B-bf16-00002-of-00002.gguf +3 -0
- f16/SWE-Dev-32B-f16-00001-of-00002.gguf +3 -0
- f16/SWE-Dev-32B-f16-00002-of-00002.gguf +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
f16/SWE-Dev-32B-f16-00001-of-00002.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
f16/SWE-Dev-32B-f16-00002-of-00002.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
SWE-Dev-32B-f16_q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
SWE-Dev-32B-bf16_q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
SWE-Dev-32B-f16_q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
SWE-Dev-32B-bf16_q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
SWE-Dev-32B-f16_q4_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
SWE-Dev-32B-bf16_q4_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
SWE-Dev-32B-q2_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
SWE-Dev-32B-q3_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
SWE-Dev-32B-q4_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
SWE-Dev-32B-q5_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
SWE-Dev-32B-q6_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
SWE-Dev-32B-q2_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
SWE-Dev-32B-q2_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
SWE-Dev-32B-q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
SWE-Dev-32B-q3_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
SWE-Dev-32B-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
SWE-Dev-32B-q4_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
SWE-Dev-32B-q5_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
SWE-Dev-32B-q5_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
SWE-Dev-32B-q6_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
SWE-Dev-32B-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
SWE-Dev-32B-q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
SWE-Dev-32B-q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
SWE-Dev-32B-q4_0_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
SWE-Dev-32B-q4_1_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
SWE-Dev-32B-q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
SWE-Dev-32B-q5_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
SWE-Dev-32B-q5_0_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
SWE-Dev-32B-q5_1_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
SWE-Dev-32B-iq1_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 68 |
+
SWE-Dev-32B-iq1_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 69 |
+
SWE-Dev-32B-iq2_xs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 70 |
+
SWE-Dev-32B-iq2_xxs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 71 |
+
SWE-Dev-32B-iq2_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 72 |
+
SWE-Dev-32B-iq2_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 73 |
+
SWE-Dev-32B-iq3_xs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 74 |
+
SWE-Dev-32B-iq3_xxs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 75 |
+
SWE-Dev-32B-iq3_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 76 |
+
SWE-Dev-32B-iq3_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 77 |
+
SWE-Dev-32B-iq4_xs.gguf filter=lfs diff=lfs merge=lfs -text
|
| 78 |
+
SWE-Dev-32B-iq4_nl.gguf filter=lfs diff=lfs merge=lfs -text
|
| 79 |
+
SWE-Dev-32B.imatrix filter=lfs diff=lfs merge=lfs -text
|
| 80 |
+
bf16/SWE-Dev-32B-bf16-00001-of-00002.gguf filter=lfs diff=lfs merge=lfs -text
|
| 81 |
+
bf16/SWE-Dev-32B-bf16-00002-of-00002.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model:
|
| 3 |
+
- Qwen/Qwen2.5-Coder-32B-Instruct
|
| 4 |
+
library_name: transformers
|
| 5 |
+
license: mit
|
| 6 |
+
pipeline_tag: text-generation
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# <span style="color: #7FFF7F;">SWE-Dev-32B GGUF Models</span>
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
## <span style="color: #7F7FFF;">Model Generation Details</span>
|
| 13 |
+
|
| 14 |
+
This model was generated using [llama.cpp](https://github.com/ggerganov/llama.cpp) at commit [`0a5a3b5c`](https://github.com/ggerganov/llama.cpp/commit/0a5a3b5cdfd887cf0f8e09d9ff89dee130cfcdde).
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
## <span style="color: #7FFF7F;">Quantization Beyond the IMatrix</span>
|
| 23 |
+
|
| 24 |
+
I've been experimenting with a new quantization approach that selectively elevates the precision of key layers beyond what the default IMatrix configuration provides.
|
| 25 |
+
|
| 26 |
+
In my testing, standard IMatrix quantization underperforms at lower bit depths, especially with Mixture of Experts (MoE) models. To address this, I'm using the `--tensor-type` option in `llama.cpp` to manually "bump" important layers to higher precision. You can see the implementation here:
|
| 27 |
+
👉 [Layer bumping with llama.cpp](https://github.com/Mungert69/GGUFModelBuilder/blob/main/model-converter/tensor_list_builder.py)
|
| 28 |
+
|
| 29 |
+
While this does increase model file size, it significantly improves precision for a given quantization level.
|
| 30 |
+
|
| 31 |
+
### **I'd love your feedback—have you tried this? How does it perform for you?**
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
---
|
| 37 |
+
|
| 38 |
+
<a href="https://readyforquantum.com/huggingface_gguf_selection_guide.html" style="color: #7FFF7F;">
|
| 39 |
+
Click here to get info on choosing the right GGUF model format
|
| 40 |
+
</a>
|
| 41 |
+
|
| 42 |
+
---
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
<!--Begin Original Model Card-->
|
| 47 |
+
|
| 48 |
+
|
| 49 |
+
📝 [Paper](https://arxiv.org/abs/2506.07636) | 🌐 [Github](https://github.com/THUDM/SWE-Dev/)
|
| 50 |
+
|
| 51 |
+
- 🤗 [SWE-Dev-7B (Qwen-2.5-Coder-7B-Instruct)](https://huggingface.co/THUDM/SWE-Dev-7B/)
|
| 52 |
+
- 🤗 [SWE-Dev-9B (GLM-4-9B-Chat)](https://huggingface.co/THUDM/SWE-Dev-9B/)
|
| 53 |
+
- 🤗 [SWE-Dev-32B (Qwen-2.5-Coder-32B-Instruct)](https://huggingface.co/THUDM/SWE-Dev-32B/)
|
| 54 |
+
- 🤗 [SWE-Dev-train (Training Data)](https://huggingface.co/datasets/THUDM/SWE-Dev-train/)
|
| 55 |
+
|
| 56 |
+
🚀 SWE-Dev, an open-source Agent for Software Engineering tasks! This repository contains the SWE-Dev-32B model as presented in the paper [SWE-Dev: Building Software Engineering Agents with Training and Inference Scaling](https://huggingface.co/papers/2506.07636).
|
| 57 |
+
|
| 58 |
+
💡 We develop a comprehensive pipeline for creating developer-oriented datasets from GitHub repositories, including issue tracking, code localization, test case generation, and evaluation.
|
| 59 |
+
|
| 60 |
+
🔧 Based on open-source frameworks (OpenHands) and models, SWE-Dev-7B and 32B achieved solve rates of 23.4% and 36.6% on SWE-bench-Verified, respectively, even approaching the performance of GPT-4o.
|
| 61 |
+
|
| 62 |
+
📚 We find that training data scaling and inference scaling can both effectively boost the performance of models on SWE-bench. Moreover, higher data quality further improves this trend when combined with reinforcement fine-tuning (RFT). For inference scaling specifically, the solve rate on SWE-Dev increased from 34.0% at 30 rounds to 36.6% at 75 rounds.
|
| 63 |
+
|
| 64 |
+
<!--End Original Model Card-->
|
| 65 |
+
|
| 66 |
+
---
|
| 67 |
+
|
| 68 |
+
# <span id="testllm" style="color: #7F7FFF;">🚀 If you find these models useful</span>
|
| 69 |
+
|
| 70 |
+
Help me test my **AI-Powered Quantum Network Monitor Assistant** with **quantum-ready security checks**:
|
| 71 |
+
|
| 72 |
+
👉 [Quantum Network Monitor](https://readyforquantum.com/?assistant=open&utm_source=huggingface&utm_medium=referral&utm_campaign=huggingface_repo_readme)
|
| 73 |
+
|
| 74 |
+
|
| 75 |
+
The full Open Source Code for the Quantum Network Monitor Service available at my github repos ( repos with NetworkMonitor in the name) : [Source Code Quantum Network Monitor](https://github.com/Mungert69). You will also find the code I use to quantize the models if you want to do it yourself [GGUFModelBuilder](https://github.com/Mungert69/GGUFModelBuilder)
|
| 76 |
+
|
| 77 |
+
💬 **How to test**:
|
| 78 |
+
Choose an **AI assistant type**:
|
| 79 |
+
- `TurboLLM` (GPT-4.1-mini)
|
| 80 |
+
- `HugLLM` (Hugginface Open-source models)
|
| 81 |
+
- `TestLLM` (Experimental CPU-only)
|
| 82 |
+
|
| 83 |
+
### **What I’m Testing**
|
| 84 |
+
I’m pushing the limits of **small open-source models for AI network monitoring**, specifically:
|
| 85 |
+
- **Function calling** against live network services
|
| 86 |
+
- **How small can a model go** while still handling:
|
| 87 |
+
- Automated **Nmap security scans**
|
| 88 |
+
- **Quantum-readiness checks**
|
| 89 |
+
- **Network Monitoring tasks**
|
| 90 |
+
|
| 91 |
+
🟡 **TestLLM** – Current experimental model (llama.cpp on 2 CPU threads on huggingface docker space):
|
| 92 |
+
- ✅ **Zero-configuration setup**
|
| 93 |
+
- ⏳ 30s load time (slow inference but **no API costs**) . No token limited as the cost is low.
|
| 94 |
+
- 🔧 **Help wanted!** If you’re into **edge-device AI**, let’s collaborate!
|
| 95 |
+
|
| 96 |
+
### **Other Assistants**
|
| 97 |
+
🟢 **TurboLLM** – Uses **gpt-4.1-mini** :
|
| 98 |
+
- **It performs very well but unfortunatly OpenAI charges per token. For this reason tokens usage is limited.
|
| 99 |
+
- **Create custom cmd processors to run .net code on Quantum Network Monitor Agents**
|
| 100 |
+
- **Real-time network diagnostics and monitoring**
|
| 101 |
+
- **Security Audits**
|
| 102 |
+
- **Penetration testing** (Nmap/Metasploit)
|
| 103 |
+
|
| 104 |
+
🔵 **HugLLM** – Latest Open-source models:
|
| 105 |
+
- 🌐 Runs on Hugging Face Inference API. Performs pretty well using the lastest models hosted on Novita.
|
| 106 |
+
|
| 107 |
+
### 💡 **Example commands you could test**:
|
| 108 |
+
1. `"Give me info on my websites SSL certificate"`
|
| 109 |
+
2. `"Check if my server is using quantum safe encyption for communication"`
|
| 110 |
+
3. `"Run a comprehensive security audit on my server"`
|
| 111 |
+
4. '"Create a cmd processor to .. (what ever you want)" Note you need to install a [Quantum Network Monitor Agent](https://readyforquantum.com/Download/?utm_source=huggingface&utm_medium=referral&utm_campaign=huggingface_repo_readme) to run the .net code on. This is a very flexible and powerful feature. Use with caution!
|
| 112 |
+
|
| 113 |
+
### Final Word
|
| 114 |
+
|
| 115 |
+
I fund the servers used to create these model files, run the Quantum Network Monitor service, and pay for inference from Novita and OpenAI—all out of my own pocket. All the code behind the model creation and the Quantum Network Monitor project is [open source](https://github.com/Mungert69). Feel free to use whatever you find helpful.
|
| 116 |
+
|
| 117 |
+
If you appreciate the work, please consider [buying me a coffee](https://www.buymeacoffee.com/mahadeva) ☕. Your support helps cover service costs and allows me to raise token limits for everyone.
|
| 118 |
+
|
| 119 |
+
I'm also open to job opportunities or sponsorship.
|
| 120 |
+
|
| 121 |
+
Thank you! 😊
|
SWE-Dev-32B-bf16_q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:32692e18ff299af2f678fd2ed18b64ff189b35903d22ea8afb3f8a9aa64a7117
|
| 3 |
+
size 46661601888
|
SWE-Dev-32B-f16_q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c10806227c3a8f965707c10c5d919d01845c9f08055885689c84a9e2746ad05d
|
| 3 |
+
size 46661601888
|
SWE-Dev-32B-iq1_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0fecf26aa92f4a1d361b3bc44a403dd9b29282b448e40fcaa9a2dd9f0b287b1e
|
| 3 |
+
size 9742306208
|
SWE-Dev-32B-iq1_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0266b3b05ef43db6e201924d9e1fd2c54ec5fb84dfde6902a03d0817939344f0
|
| 3 |
+
size 8992492448
|
SWE-Dev-32B-iq2_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df8287ce37ae93f398584651d6c16d52d324eab8142e6ea74e3b080cf06b4421
|
| 3 |
+
size 11985849248
|
SWE-Dev-32B-iq2_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b725e674efd3394cd6ff0828fd959702aab44c89a10b48afbe5e302e2cb65d2
|
| 3 |
+
size 11382262688
|
SWE-Dev-32B-iq2_xs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99ec87b12a839f2ac5376950fc415f161e3fe9c67c4d5b91d5489dbb0c4ebeb9
|
| 3 |
+
size 11016326048
|
SWE-Dev-32B-iq2_xxs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7d11619a2f5d5345dc11b4e18a10bbe73a7e4fc4c98caffb691cb703d1ee588
|
| 3 |
+
size 10124954528
|
SWE-Dev-32B-iq3_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6c4681eb9f981fc6d388f049e71b55e92f23ea71e69eabd76d48837b8d53449
|
| 3 |
+
size 15545355168
|
SWE-Dev-32B-iq3_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34b3ddaa06b41383dd58e80811f612a790b4f436881f494e5d32c136f54b1c7a
|
| 3 |
+
size 15545355168
|
SWE-Dev-32B-iq3_xs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3a7ecd04b88b4e93d2a8be7e0202f410f31ad699848f2167eb020d9f6d9be776
|
| 3 |
+
size 13967002528
|
SWE-Dev-32B-iq3_xxs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94b8298b3b3ffbb1471d86ed8242e37652aadad692d879f33f6743b67112c482
|
| 3 |
+
size 13628836768
|
SWE-Dev-32B-iq4_nl.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:32afed051904c16b07b7c9659449ab78080f4bac92262d18974e93253281aee9
|
| 3 |
+
size 18682174368
|
SWE-Dev-32B-iq4_xs.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:35ff85f3cc07305922b605328e4f4ee231147c972d1be9491c1bfc4938d47ff6
|
| 3 |
+
size 17693154208
|
SWE-Dev-32B-q2_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69178b9aa436c50d8acdd04367eae99b56ecc396d59dbede5eb6acacfe108982
|
| 3 |
+
size 12590295968
|
SWE-Dev-32B-q2_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3bb375c9ca8e2de87ee8cd8cd0c6af1a22f4dee3d55f0395f3b1885ab7f6094
|
| 3 |
+
size 12383488928
|
SWE-Dev-32B-q3_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b9c82f0ff9f5e5cf1ecb1fd3aba0facd45d018165ea6c14cda8d89fa9c0c2e2d
|
| 3 |
+
size 16126127008
|
SWE-Dev-32B-q3_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d5ad6c739d75dd706c4da4a7c5c4aa8aa06b303ff5852ab48cf21936bebf021
|
| 3 |
+
size 15919319968
|
SWE-Dev-32B-q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25a91b39798392e29216f85a47db74d3546c1dab1acb18a7c9c59fad949bced9
|
| 3 |
+
size 18439506848
|
SWE-Dev-32B-q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4beddef8347978ffa417ee7c4180a258ad3150a802f422edbb6c6e9bd48f9078
|
| 3 |
+
size 20487179168
|
SWE-Dev-32B-q4_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ebf59bd3c46c1a03fe18340fd6c06d95e01d7671f5a209bce97832aec45fb65
|
| 3 |
+
size 19824978848
|
SWE-Dev-32B-q4_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db62de42a9f85359bfc0c6cf9f9909707f9e4e86ecb8c24cdff81e5e06ddbbf2
|
| 3 |
+
size 19161426848
|
SWE-Dev-32B-q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca250ed769559f6773628961cfd955ad45113ba1b86878c9a1842c428a69e3de
|
| 3 |
+
size 22534851488
|
SWE-Dev-32B-q5_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1349abd83682dbefac879e382378ad61e40fd65cd2d8c8738f8c9bf452bb36f
|
| 3 |
+
size 24582523808
|
SWE-Dev-32B-q5_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfb334089481ec472986e0fbf9e28ca43e95503cea6839ec2c20a83df9894484
|
| 3 |
+
size 23414303648
|
SWE-Dev-32B-q5_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2342aeae5042714ea12ffa0b607042e4b3a738f7f05fc1492b612a25e4a9437b
|
| 3 |
+
size 23063358368
|
SWE-Dev-32B-q6_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2623e42a6949ea1949be633c4732a9dd505bc69919cd28a4532d462f188aa80d
|
| 3 |
+
size 26886155168
|
SWE-Dev-32B-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dbefb397865aa86f29d7b0c352e4df1211abe5a8bc87c17a10d5f60570d1d55b
|
| 3 |
+
size 34820885088
|
SWE-Dev-32B.imatrix
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b04c9a698920b9f32eab255d2c7e60a6cc1a0a2faa289fce29dbd22ec28da78a
|
| 3 |
+
size 14957132
|
bf16/SWE-Dev-32B-bf16-00001-of-00002.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4d21e098d32c4e91334bd0b525ec6a5dd262b92c1de21df6c97156fc838a4d4
|
| 3 |
+
size 45902462976
|
bf16/SWE-Dev-32B-bf16-00002-of-00002.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e28cf065e3feda607abb4d70237e407bed95f9b5e86f1f6b3ca90f7486ed9884
|
| 3 |
+
size 19633506912
|
f16/SWE-Dev-32B-f16-00001-of-00002.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5e235d03a4780ff1b7dd759884857abd30a04ae44692e4fa2fd000ba0b81ed5
|
| 3 |
+
size 45902462976
|
f16/SWE-Dev-32B-f16-00002-of-00002.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38c2baf26f9d06c7e70083870d12b27052410296911d241c1f1ee994403c0748
|
| 3 |
+
size 19633506912
|