Instructions to use bluryar/VoxCPM-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use bluryar/VoxCPM-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="bluryar/VoxCPM-GGUF", filename="voxcpm-0.5b-f16-audiovae-f16.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use bluryar/VoxCPM-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 bluryar/VoxCPM-GGUF:F16 # Run inference directly in the terminal: llama cli -hf bluryar/VoxCPM-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf bluryar/VoxCPM-GGUF:F16 # Run inference directly in the terminal: llama cli -hf bluryar/VoxCPM-GGUF:F16
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 bluryar/VoxCPM-GGUF:F16 # Run inference directly in the terminal: ./llama-cli -hf bluryar/VoxCPM-GGUF:F16
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 bluryar/VoxCPM-GGUF:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf bluryar/VoxCPM-GGUF:F16
Use Docker
docker model run hf.co/bluryar/VoxCPM-GGUF:F16
- LM Studio
- Jan
- Ollama
How to use bluryar/VoxCPM-GGUF with Ollama:
ollama run hf.co/bluryar/VoxCPM-GGUF:F16
- Unsloth Studio
How to use bluryar/VoxCPM-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 bluryar/VoxCPM-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 bluryar/VoxCPM-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for bluryar/VoxCPM-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use bluryar/VoxCPM-GGUF with Docker Model Runner:
docker model run hf.co/bluryar/VoxCPM-GGUF:F16
- Lemonade
How to use bluryar/VoxCPM-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bluryar/VoxCPM-GGUF:F16
Run and chat with the model
lemonade run user.VoxCPM-GGUF-F16
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +14 -0
- voxcpm-0.5b-f16-audiovae-f16.gguf +3 -0
- voxcpm-0.5b-f16.gguf +3 -0
- voxcpm-0.5b-f32.gguf +3 -0
- voxcpm-0.5b-q4_k-audiovae-f16.gguf +3 -0
- voxcpm-0.5b-q4_k.gguf +3 -0
- voxcpm-0.5b-q8_0-audiovae-f16.gguf +3 -0
- voxcpm-0.5b-q8_0.gguf +3 -0
- voxcpm1.5-f16-audiovae-f16.gguf +3 -0
- voxcpm1.5-f16.gguf +3 -0
- voxcpm1.5-f32.gguf +3 -0
- voxcpm1.5-q4_k-audiovae-f16.gguf +3 -0
- voxcpm1.5-q4_k.gguf +3 -0
- voxcpm1.5-q8_0-audiovae-f16.gguf +3 -0
- voxcpm1.5-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 |
+
voxcpm-0.5b-f16-audiovae-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
voxcpm-0.5b-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
voxcpm-0.5b-f32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
voxcpm-0.5b-q4_k-audiovae-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
voxcpm-0.5b-q4_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
voxcpm-0.5b-q8_0-audiovae-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
voxcpm-0.5b-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
voxcpm1.5-f16-audiovae-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
voxcpm1.5-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
voxcpm1.5-f32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
voxcpm1.5-q4_k-audiovae-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
voxcpm1.5-q4_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
voxcpm1.5-q8_0-audiovae-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
voxcpm1.5-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
voxcpm-0.5b-f16-audiovae-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51dd39d040d04929cca27d29269cf870db411db7709806adeb25b268dd211770
|
| 3 |
+
size 1460771904
|
voxcpm-0.5b-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51dd39d040d04929cca27d29269cf870db411db7709806adeb25b268dd211770
|
| 3 |
+
size 1460771904
|
voxcpm-0.5b-f32.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eca2ed4e67d71b1ae0b9c4e894b393fd06be772dd64b4d008dfc628c1746cbf5
|
| 3 |
+
size 2913602336
|
voxcpm-0.5b-q4_k-audiovae-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d5802b3e2a3f3d4f73f1a140b600823b5e976d89fc69dc30d7d16da3295cd110
|
| 3 |
+
size 571242048
|
voxcpm-0.5b-q4_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:32fa909cc3c127bfa1003b0863f7b7587bb44e3ae26c6c1cbf224f58d70a9fb3
|
| 3 |
+
size 499832224
|
voxcpm-0.5b-q8_0-audiovae-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a82c9e81059b5b2a5ddc732f29bf3d315a780df659f4ccd86e3a2680fba800a
|
| 3 |
+
size 850327104
|
voxcpm-0.5b-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a35617e1261fbd4b23678e1db7f83ca0ca341f78cbacad8acfc59009f0d1b80c
|
| 3 |
+
size 803072768
|
voxcpm1.5-f16-audiovae-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:98afdc36ff3b7385190db0c68dea7bbc94d16595a4de6c3146b9c030177ea1fd
|
| 3 |
+
size 1781972192
|
voxcpm1.5-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:98afdc36ff3b7385190db0c68dea7bbc94d16595a4de6c3146b9c030177ea1fd
|
| 3 |
+
size 1781972192
|
voxcpm1.5-f32.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:209651c27f696215cc1ac886f88b511f92445433a026267684203734bb171b8c
|
| 3 |
+
size 3555873376
|
voxcpm1.5-q4_k-audiovae-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce5edb331e869d89a8f816c9288fba4c1cffa636099808d240974a34f2ce8361
|
| 3 |
+
size 677811936
|
voxcpm1.5-q4_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d3004553fb6512f193d60ec8de98b1aa0378eff47c347481ce009a43a1804397
|
| 3 |
+
size 610029088
|
voxcpm1.5-q8_0-audiovae-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bbc76d84b9cb429968d092518152813d2a354219d4c5e98592d2df420691128d
|
| 3 |
+
size 1031444192
|
voxcpm1.5-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9950ab9f0acd7e22d329d1e76c2dd1370212fdf2157fe4410a01c697687fff2b
|
| 3 |
+
size 986999744
|