Instructions to use mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF", filename="Prompt-Injection-classifier-complex-Qwen3-0.6b.IQ4_XS.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-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 mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-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 mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-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 mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF with Ollama:
ollama run hf.co/mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-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 mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-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 mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF to start chatting
- Pi
How to use mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-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": "mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-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 mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-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 mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Prompt-Injection-classifier-complex-Qwen3-0.6b-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- Prompt-Injection-classifier-complex-Qwen3-0.6b.IQ4_XS.gguf +3 -0
- Prompt-Injection-classifier-complex-Qwen3-0.6b.Q2_K.gguf +3 -0
- Prompt-Injection-classifier-complex-Qwen3-0.6b.Q3_K_L.gguf +3 -0
- Prompt-Injection-classifier-complex-Qwen3-0.6b.Q3_K_M.gguf +3 -0
- Prompt-Injection-classifier-complex-Qwen3-0.6b.Q3_K_S.gguf +3 -0
- Prompt-Injection-classifier-complex-Qwen3-0.6b.Q4_K_M.gguf +3 -0
- Prompt-Injection-classifier-complex-Qwen3-0.6b.Q4_K_S.gguf +3 -0
- Prompt-Injection-classifier-complex-Qwen3-0.6b.Q5_K_M.gguf +3 -0
- Prompt-Injection-classifier-complex-Qwen3-0.6b.Q5_K_S.gguf +3 -0
- Prompt-Injection-classifier-complex-Qwen3-0.6b.Q6_K.gguf +3 -0
- Prompt-Injection-classifier-complex-Qwen3-0.6b.Q8_0.gguf +3 -0
- Prompt-Injection-classifier-complex-Qwen3-0.6b.f16.gguf +3 -0
|
@@ -33,3 +33,15 @@ saved_model/**/* 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
Prompt-Injection-classifier-complex-Qwen3-0.6b.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Prompt-Injection-classifier-complex-Qwen3-0.6b.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Prompt-Injection-classifier-complex-Qwen3-0.6b.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Prompt-Injection-classifier-complex-Qwen3-0.6b.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Prompt-Injection-classifier-complex-Qwen3-0.6b.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Prompt-Injection-classifier-complex-Qwen3-0.6b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Prompt-Injection-classifier-complex-Qwen3-0.6b.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Prompt-Injection-classifier-complex-Qwen3-0.6b.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Prompt-Injection-classifier-complex-Qwen3-0.6b.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Prompt-Injection-classifier-complex-Qwen3-0.6b.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Prompt-Injection-classifier-complex-Qwen3-0.6b.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Prompt-Injection-classifier-complex-Qwen3-0.6b.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47c88bfa730d10f23f53d61648862d396a4fe8cb979849adb0ded950fdd65ea4
|
| 3 |
+
size 451932192
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f41c8d67b507c7459e6010a4cea453acc2aa434fd79788c194f1e2a23f2ae9a8
|
| 3 |
+
size 347289632
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88d1e35f17b3e8cfcc5fc962b1dfe865cea4341f7fbf0b88544cf9a6da94ac7a
|
| 3 |
+
size 435344416
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d1fac30a75d87b60b779ffef64391c9cc9609b3e63986b9cb0684bff2f2566a
|
| 3 |
+
size 413979680
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ef02fd975979e496bf232cb2cc8f687bb65b1784492ff4db8c47394ad7d5d8b
|
| 3 |
+
size 389927968
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc14563e838b895e8ae1249fb303b50e0fcf84146bf1d536682aff6ada625319
|
| 3 |
+
size 484220960
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0ff2686b6a03d0f8365d3f45391651a8d00662b6d6fc28dd270120caf43a862
|
| 3 |
+
size 470786080
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73803c6574f6727360c2ae424e4b636aa2790ad60b1f91ae35700f82931fee2b
|
| 3 |
+
size 551378976
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d29a4831c3957e070880e51e14b07013253c547e5d59a6ff76c4af824f46e8b4
|
| 3 |
+
size 543580192
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:015c1129e9302a7388f74e3d8d329f869f0c257cd21077c94394c6b733b8b4bb
|
| 3 |
+
size 622734368
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5ea67a96de5d483c1495bedf379b3cbe128a5b5991b0b595491bb2f38791c27
|
| 3 |
+
size 804754464
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:707dc37668bb1361c9d6c42ee22378b5a05e165568442eafb2cd4fc0c90c8ba0
|
| 3 |
+
size 1509348384
|