Instructions to use rootonchair/Vintern-3B-R-beta-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use rootonchair/Vintern-3B-R-beta-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="rootonchair/Vintern-3B-R-beta-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("rootonchair/Vintern-3B-R-beta-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use rootonchair/Vintern-3B-R-beta-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 rootonchair/Vintern-3B-R-beta-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf rootonchair/Vintern-3B-R-beta-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 rootonchair/Vintern-3B-R-beta-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf rootonchair/Vintern-3B-R-beta-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 rootonchair/Vintern-3B-R-beta-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf rootonchair/Vintern-3B-R-beta-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 rootonchair/Vintern-3B-R-beta-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf rootonchair/Vintern-3B-R-beta-GGUF:Q4_K_M
Use Docker
docker model run hf.co/rootonchair/Vintern-3B-R-beta-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use rootonchair/Vintern-3B-R-beta-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "rootonchair/Vintern-3B-R-beta-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": "rootonchair/Vintern-3B-R-beta-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/rootonchair/Vintern-3B-R-beta-GGUF:Q4_K_M
- SGLang
How to use rootonchair/Vintern-3B-R-beta-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 "rootonchair/Vintern-3B-R-beta-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": "rootonchair/Vintern-3B-R-beta-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 "rootonchair/Vintern-3B-R-beta-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": "rootonchair/Vintern-3B-R-beta-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 rootonchair/Vintern-3B-R-beta-GGUF with Ollama:
ollama run hf.co/rootonchair/Vintern-3B-R-beta-GGUF:Q4_K_M
- Unsloth Studio
How to use rootonchair/Vintern-3B-R-beta-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 rootonchair/Vintern-3B-R-beta-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 rootonchair/Vintern-3B-R-beta-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for rootonchair/Vintern-3B-R-beta-GGUF to start chatting
- Pi
How to use rootonchair/Vintern-3B-R-beta-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf rootonchair/Vintern-3B-R-beta-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": "rootonchair/Vintern-3B-R-beta-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use rootonchair/Vintern-3B-R-beta-GGUF with Docker Model Runner:
docker model run hf.co/rootonchair/Vintern-3B-R-beta-GGUF:Q4_K_M
- Lemonade
How to use rootonchair/Vintern-3B-R-beta-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull rootonchair/Vintern-3B-R-beta-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Vintern-3B-R-beta-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use rootonchair/Vintern-3B-R-beta-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 rootonchair/Vintern-3B-R-beta-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 rootonchair/Vintern-3B-R-beta-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use rootonchair/Vintern-3B-R-beta-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf rootonchair/Vintern-3B-R-beta-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 "rootonchair/Vintern-3B-R-beta-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"
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- Vintern-3B-R-beta-IQ4_XS.gguf +3 -0
- Vintern-3B-R-beta-Q2_K.gguf +3 -0
- Vintern-3B-R-beta-Q3_K_L.gguf +3 -0
- Vintern-3B-R-beta-Q3_K_M.gguf +3 -0
- Vintern-3B-R-beta-Q3_K_S.gguf +3 -0
- Vintern-3B-R-beta-Q4_K_M.gguf +3 -0
- Vintern-3B-R-beta-Q4_K_S.gguf +3 -0
- Vintern-3B-R-beta-Q5_K_M.gguf +3 -0
- Vintern-3B-R-beta-Q5_K_S.gguf +3 -0
- Vintern-3B-R-beta-Q6_K.gguf +3 -0
- Vintern-3B-R-beta-Q8_0.gguf +3 -0
- Vintern-3B-R-beta-f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -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 |
+
Vintern-3B-R-beta-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Vintern-3B-R-beta-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Vintern-3B-R-beta-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Vintern-3B-R-beta-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Vintern-3B-R-beta-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Vintern-3B-R-beta-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Vintern-3B-R-beta-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Vintern-3B-R-beta-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Vintern-3B-R-beta-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Vintern-3B-R-beta-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Vintern-3B-R-beta-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Vintern-3B-R-beta-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
Vintern-3B-R-beta-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa0503c37469773859afee231a93227471ea47cdd525ee4f27dc3b865f768a6b
|
| 3 |
+
size 1917757920
|
Vintern-3B-R-beta-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca94d67a8f15573a40dc132cbf94026099278d8624c624a49c178144b18db2ae
|
| 3 |
+
size 1376232352
|
Vintern-3B-R-beta-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bd78eec78a36bdaf54c6e433836b05bc87ed2b06c14d70df130822df30ed62ca
|
| 3 |
+
size 1840416448
|
Vintern-3B-R-beta-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d47035b3da999112808e8e91240bb689a03f4e7d3aa3b932976a9a00473b8b1
|
| 3 |
+
size 1723500224
|
Vintern-3B-R-beta-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee15a9afb1e0d10ad91b79a630e3a86cdf531b353fca05834756a04409dee81c
|
| 3 |
+
size 1587381952
|
Vintern-3B-R-beta-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:22843389d06ea668d1cadec29a756c5cae0cda039bb8454065d19811fce6594e
|
| 3 |
+
size 2104182880
|
Vintern-3B-R-beta-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52fb95fbee3cdb14170f51a2a4818e37b5486506b1024e6ae7e319522cc53521
|
| 3 |
+
size 2008664160
|
Vintern-3B-R-beta-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36fa431c623db4a01fa17686bed2fc1b0e0f12e68bd6e81fb250655fb7c76ee6
|
| 3 |
+
size 2437923424
|
Vintern-3B-R-beta-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:edbee4bf2d5d821c3b56ff889c5a33c638e82b9bf36526f657e2e18fce177188
|
| 3 |
+
size 2382774880
|
Vintern-3B-R-beta-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae1aff41225833b327b536337a96e4a8e54a68ca66a5122867cee0e4cd2c3c6a
|
| 3 |
+
size 2792522752
|
Vintern-3B-R-beta-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fcf093c4507f8e9041843474bd5c96256acf0052b53f41832aba769d385bdde1
|
| 3 |
+
size 3614940352
|
Vintern-3B-R-beta-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1dda0be4ee82f01401320e86956e47eff062db36367617c6b8a5a3a0765d962
|
| 3 |
+
size 6798492352
|