Image-Text-to-Text
Transformers
GGUF
English
text-generation-inference
computer-use-agent
gui-agent
multimodal
vision-language
desktop-agent
pyautogui
osworld
windowsagentarena
conversational
Instructions to use prithivMLmods/UI-Mate-9B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/UI-Mate-9B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="prithivMLmods/UI-Mate-9B-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/UI-Mate-9B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use prithivMLmods/UI-Mate-9B-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/UI-Mate-9B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf prithivMLmods/UI-Mate-9B-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/UI-Mate-9B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf prithivMLmods/UI-Mate-9B-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/UI-Mate-9B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/UI-Mate-9B-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/UI-Mate-9B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/UI-Mate-9B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/prithivMLmods/UI-Mate-9B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use prithivMLmods/UI-Mate-9B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/UI-Mate-9B-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/UI-Mate-9B-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/UI-Mate-9B-GGUF:Q4_K_M
- SGLang
How to use prithivMLmods/UI-Mate-9B-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/UI-Mate-9B-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/UI-Mate-9B-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/UI-Mate-9B-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/UI-Mate-9B-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/UI-Mate-9B-GGUF with Ollama:
ollama run hf.co/prithivMLmods/UI-Mate-9B-GGUF:Q4_K_M
- Unsloth Studio
How to use prithivMLmods/UI-Mate-9B-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/UI-Mate-9B-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/UI-Mate-9B-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/UI-Mate-9B-GGUF to start chatting
- Pi
How to use prithivMLmods/UI-Mate-9B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf prithivMLmods/UI-Mate-9B-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": "prithivMLmods/UI-Mate-9B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use prithivMLmods/UI-Mate-9B-GGUF with Docker Model Runner:
docker model run hf.co/prithivMLmods/UI-Mate-9B-GGUF:Q4_K_M
- Lemonade
How to use prithivMLmods/UI-Mate-9B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/UI-Mate-9B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.UI-Mate-9B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use prithivMLmods/UI-Mate-9B-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 prithivMLmods/UI-Mate-9B-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 prithivMLmods/UI-Mate-9B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use prithivMLmods/UI-Mate-9B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf prithivMLmods/UI-Mate-9B-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 "prithivMLmods/UI-Mate-9B-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"
Add files using upload-large-folder tool
Browse files- .gitattributes +14 -0
- UI-Mate-9B.BF16.gguf +3 -0
- UI-Mate-9B.F16.gguf +3 -0
- UI-Mate-9B.Q3_K_L.gguf +3 -0
- UI-Mate-9B.Q3_K_M.gguf +3 -0
- UI-Mate-9B.Q3_K_S.gguf +3 -0
- UI-Mate-9B.Q4_K_M.gguf +3 -0
- UI-Mate-9B.Q4_K_S.gguf +3 -0
- UI-Mate-9B.Q5_K_M.gguf +3 -0
- UI-Mate-9B.Q5_K_S.gguf +3 -0
- UI-Mate-9B.Q6_K.gguf +3 -0
- UI-Mate-9B.Q8_0.gguf +3 -0
- UI-Mate-9B.mmproj-bf16.gguf +3 -0
- UI-Mate-9B.mmproj-f16.gguf +3 -0
- UI-Mate-9B.mmproj-q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,17 @@ 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 |
+
UI-Mate-9B.mmproj-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
UI-Mate-9B.mmproj-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
UI-Mate-9B.mmproj-bf16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
UI-Mate-9B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
UI-Mate-9B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
UI-Mate-9B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
UI-Mate-9B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
UI-Mate-9B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
UI-Mate-9B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
UI-Mate-9B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
UI-Mate-9B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
UI-Mate-9B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
UI-Mate-9B.BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
UI-Mate-9B.F16.gguf filter=lfs diff=lfs merge=lfs -text
|
UI-Mate-9B.BF16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:27680609fba7848380cf9146281d231cef8dbc0e98e2ec6b211e9128b60805bb
|
| 3 |
+
size 17920697184
|
UI-Mate-9B.F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:45a68bb0379f717f070237bb233d6eca1202edf26dd2c0295b4bcc41aa2f3e3f
|
| 3 |
+
size 17920697184
|
UI-Mate-9B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d34b87b14bfa31d9663635939415be7c3d346dcf2f26a52ba0697ec870297c6
|
| 3 |
+
size 4925514592
|
UI-Mate-9B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f4939aba797d72af1ef449fba9068bdcc85cf59677b15219fa6c1f00a0d2217
|
| 3 |
+
size 4623524704
|
UI-Mate-9B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08b7646db67f4480386170893855382c22a6a3064601ba4a647d7a3fbae08091
|
| 3 |
+
size 4259406688
|
UI-Mate-9B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c98b72a5f4f6aa34ff681d65fef5deb47d4a888d645111260fe4e8e3032be41
|
| 3 |
+
size 5629109088
|
UI-Mate-9B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70b532549419559b708e8bcf8bc7aad81e88f9f5734149ebe06e7823c344fcf5
|
| 3 |
+
size 5351629664
|
UI-Mate-9B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:05bd8181398dbbb95c41975ca69fbf79a0866ceac37cd0c18c74dfab137d5c6c
|
| 3 |
+
size 6467969888
|
UI-Mate-9B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a55da8cc83119ad86417c30c29062839ed9de2177c0de575a212edf66d65a70f
|
| 3 |
+
size 6305309536
|
UI-Mate-9B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f67c8337a2d536c79fc61f62481345c0bb1f05819719794d9ea5aefc1b119afa
|
| 3 |
+
size 7359259488
|
UI-Mate-9B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d92e9cf48a9e644964f235ada73daecbb79abf9500964f73665886902048c99b
|
| 3 |
+
size 9527501664
|
UI-Mate-9B.mmproj-bf16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1997f409d28f3d98ec9e26029a9b7fef6c97cb4a6d945ec4a309115166f5c48
|
| 3 |
+
size 921704960
|
UI-Mate-9B.mmproj-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1997f409d28f3d98ec9e26029a9b7fef6c97cb4a6d945ec4a309115166f5c48
|
| 3 |
+
size 921704960
|
UI-Mate-9B.mmproj-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd9cf361a5bc3128a6269a36acdd0b38090ce76875721f52ee2521673b23a465
|
| 3 |
+
size 624229760
|