Instructions to use Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-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 Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-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 Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-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 Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-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 Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-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": "Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-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/Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF:Q4_K_M
- Ollama
How to use Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF with Ollama:
ollama run hf.co/Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF:Q4_K_M
- Unsloth Studio
How to use Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-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 Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-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 Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF to start chatting
- Pi
How to use Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-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": "Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF with Docker Model Runner:
docker model run hf.co/Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF:Q4_K_M
- Lemonade
How to use Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-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 Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-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 Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-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 "Tipur/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-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"
Duplicate from noctrex/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF
Browse files- .gitattributes +60 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ2_M.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ2_S.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ2_XS.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ3_M.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ3_S.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ3_XS.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ3_XXS.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ4_NL.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ4_XS.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-MXFP4_MOE.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q2_K.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q2_K_S.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q3_K_L.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q3_K_M.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q3_K_S.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q4_K_M.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q4_K_S.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q5_K_M.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q5_K_S.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q6_K.gguf +3 -0
- Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q8_0.gguf +3 -0
- README.md +16 -0
- mmproj-BF16.gguf +3 -0
- mmproj-F16.gguf +3 -0
- mmproj-F32.gguf +3 -0
- mmproj-Q8_0.gguf +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-MXFP4_MOE.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
mmproj-BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
mmproj-F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
mmproj-F32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
mmproj-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4bf52ab114ebab3e8bc4bbfb41ab2f52c26759ac33f2b9c2831cf53d738d1ea
|
| 3 |
+
size 10169509376
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a3139a8b3cc79af1a81378987255bd80ad6aad9eae60ddd8ad20094a107dcfad
|
| 3 |
+
size 9287132672
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:096a338436e9e8ae25ac61a4b57a6abb920c291c05b00f1929870835d0df4794
|
| 3 |
+
size 9076223488
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1bbf39fe263e4a94850dc3556d1aaa297bea81cc3bb4ac56497670506c0ad8a0
|
| 3 |
+
size 13513063936
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03ec16b88343f6279b31048ea05daa629d1e8f2741fbb32d723fe9aefeeea5d1
|
| 3 |
+
size 13299154432
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:958b82074b02fdb50336c934da02aa4ca0bf1f41ea757b5238c4de4da30e6a11
|
| 3 |
+
size 12598443520
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cee5d000ebc1125a0a0e9b621e357440db6ef028bb1fe21820a4d898bda1d2bd
|
| 3 |
+
size 11849328128
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:defbb5130b54e78a4b2ef232d71663e2a8daa9aa0bac7a95c6732b2a01d9d370
|
| 3 |
+
size 17310782976
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6d6c49eff4cea3d04fac8051b4d983a09d954982f1387119b9b4fbb2240d3c9
|
| 3 |
+
size 16368350720
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-MXFP4_MOE.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f458db67228615462fa467085938df88cc1b84d0cedda2bcec52cdc757643f9
|
| 3 |
+
size 17082449408
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf70724c4be1fb3f2dea4d69ff4626df2ec829524ba0f888844b9f80e06068c2
|
| 3 |
+
size 11258611200
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1047b967df8cf17638dc02df11b02ce3ee480cf0cf3c6e6ebe578555fa6a9360
|
| 3 |
+
size 10519365120
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d5a48eb95748151fe4ad86fbde3cc155bbf938d6434fe6eaa76d55e354afad5
|
| 3 |
+
size 15900671488
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0970f45d8b87500aa815a481159fea83a5f10db5a437720657889173f0bede50
|
| 3 |
+
size 14711848448
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f858ca4a8f019ab086780a130ec89954ed9e0ac1328d7117b9f05074ba851f2
|
| 3 |
+
size 13292469760
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e94a65167a39d2ff4427393746d4dbc838f3d163c639d932e9ce983f575eabf
|
| 3 |
+
size 18556687872
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9cc17ccfdeb13108daf652d776a010977d62627c128fd43dbc18b8373f575f87
|
| 3 |
+
size 17456010752
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c89eef0f0a5f44d97d2ed7a610246e3aff6299fab8bee3abf8bd8cf6933261e6
|
| 3 |
+
size 21725582848
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55527573bcc88f50c87b4daf64fb8bfbce30017f542fbce0179355a6642d4f35
|
| 3 |
+
size 21080512000
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d9ab9ecb11cc242469b12a0a6309efc06c6ddd3c4ca8ee45e0c5080428fcab2
|
| 3 |
+
size 25092533760
|
Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f30a07755d2d08be61ac20d30ef38c32bcba35d370b14b144d5268dedd03b09f
|
| 3 |
+
size 32483933440
|
README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pipeline_tag: image-text-to-text
|
| 3 |
+
base_model:
|
| 4 |
+
- huihui-ai/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated
|
| 5 |
+
---
|
| 6 |
+
These are quantizations of the model Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated
|
| 7 |
+
|
| 8 |
+
The imatrix from unsloth has been used for these.
|
| 9 |
+
|
| 10 |
+
Original model: https://huggingface.co/huihui-ai/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated
|
| 11 |
+
|
| 12 |
+
Download the latest llama.cpp to use them.
|
| 13 |
+
|
| 14 |
+
Try to use the best quality you can run.
|
| 15 |
+
For the mmproj, try to use the F32 version as it will produce the best results.
|
| 16 |
+
F32 > BF16 > F16.
|
mmproj-BF16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:567b68266af809333340c25b1eecdec0acf79196662e4f629510fef448e12aaf
|
| 3 |
+
size 1087038976
|
mmproj-F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4bfd655851a5609b29201154e0bd4fe5f9274073766b8ab35b3a8acba0dd77a7
|
| 3 |
+
size 1083500032
|
mmproj-F32.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5aaaf28a770e0d0bc16dfb8073544a0f7d3e13e22f03de41f0d0360688ea947
|
| 3 |
+
size 2154546688
|
mmproj-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4dcdbf3244a6f38f507902ac7e869d8574bd1f8316177cdf7f99798d9ec986e1
|
| 3 |
+
size 712149376
|