Image-Text-to-Text
Transformers
GGUF
English
Chinese
qwen2_5_vl
text-generation-inference
Abliterated
Uncensored
conversational
Instructions to use prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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("prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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 prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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 prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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 prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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 prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF:Q4_K_M
Use Docker
docker model run hf.co/prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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": "prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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/prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF:Q4_K_M
- SGLang
How to use prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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 "prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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": "prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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 "prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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": "prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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 prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF with Ollama:
ollama run hf.co/prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF:Q4_K_M
- Unsloth Studio
How to use prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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 prithivMLmods/Qwen2.5-VL-Abliterated-Caption-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 prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF to start chatting
- Docker Model Runner
How to use prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF with Docker Model Runner:
docker model run hf.co/prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF:Q4_K_M
- Lemonade
How to use prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/Qwen2.5-VL-Abliterated-Caption-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen2.5-VL-Abliterated-Caption-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
upload files
Browse files- .gitattributes +6 -0
- Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q2_K.gguf +3 -0
- Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q3_K_L.gguf +3 -0
- Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q3_K_M.gguf +3 -0
- Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q3_K_S.gguf +3 -0
- Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q4_K_M.gguf +3 -0
- Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q4_K_S.gguf +3 -0
.gitattributes
CHANGED
|
@@ -51,3 +51,9 @@ Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.f
|
|
| 51 |
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.mmproj-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.mmproj-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.mmproj-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.mmproj-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bfaf6601427957bbec9c8a952df0360d95a869df9787575ed7f7ae61b7584cf4
|
| 3 |
+
size 3015940256
|
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd6692ea1d6962c19662858ef436420b58c131aa1e051d0e33df7b87ea873543
|
| 3 |
+
size 4088459424
|
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8cb6ca97ac76b3ae620173207dc213af304a9659aff31d054aeceb6b1dbf3e52
|
| 3 |
+
size 3808391328
|
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fa1d729c352c7b867dcfd6a8017bed30221105779476cad20e3577936cc1b3b
|
| 3 |
+
size 3492368544
|
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb3d145e6a944ba23796b21405ae856868fc2f74353b921693b29b713a1f7620
|
| 3 |
+
size 4683073696
|
Qwen2.5-VL-7B-Abliterated-Caption-it-GGUF/Qwen2.5-VL-7B-Abliterated-Caption-it.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea35fa6f8c5641aaacf7f0c1da9f350b8994035a04542282c84ad71c4fa6cb83
|
| 3 |
+
size 4457769120
|