Instructions to use tensorblock/Synatra_TbST02M_IN01-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/Synatra_TbST02M_IN01-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/Synatra_TbST02M_IN01-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/Synatra_TbST02M_IN01-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/Synatra_TbST02M_IN01-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 tensorblock/Synatra_TbST02M_IN01-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Synatra_TbST02M_IN01-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/Synatra_TbST02M_IN01-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Synatra_TbST02M_IN01-GGUF:Q2_K
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 tensorblock/Synatra_TbST02M_IN01-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/Synatra_TbST02M_IN01-GGUF:Q2_K
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 tensorblock/Synatra_TbST02M_IN01-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/Synatra_TbST02M_IN01-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/Synatra_TbST02M_IN01-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/Synatra_TbST02M_IN01-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/Synatra_TbST02M_IN01-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": "tensorblock/Synatra_TbST02M_IN01-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/Synatra_TbST02M_IN01-GGUF:Q2_K
- SGLang
How to use tensorblock/Synatra_TbST02M_IN01-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 "tensorblock/Synatra_TbST02M_IN01-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": "tensorblock/Synatra_TbST02M_IN01-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "tensorblock/Synatra_TbST02M_IN01-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": "tensorblock/Synatra_TbST02M_IN01-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/Synatra_TbST02M_IN01-GGUF with Ollama:
ollama run hf.co/tensorblock/Synatra_TbST02M_IN01-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/Synatra_TbST02M_IN01-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 tensorblock/Synatra_TbST02M_IN01-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 tensorblock/Synatra_TbST02M_IN01-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/Synatra_TbST02M_IN01-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/Synatra_TbST02M_IN01-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/Synatra_TbST02M_IN01-GGUF:Q2_K
- Lemonade
How to use tensorblock/Synatra_TbST02M_IN01-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/Synatra_TbST02M_IN01-GGUF:Q2_K
Run and chat with the model
lemonade run user.Synatra_TbST02M_IN01-GGUF-Q2_K
List all available models
lemonade list
- Atomic Chat
Remove .gguf files (keep Q2_K.gguf)
Browse files- Synatra_TbST02M_IN01-Q3_K_L.gguf +0 -3
- Synatra_TbST02M_IN01-Q3_K_M.gguf +0 -3
- Synatra_TbST02M_IN01-Q3_K_S.gguf +0 -3
- Synatra_TbST02M_IN01-Q4_0.gguf +0 -3
- Synatra_TbST02M_IN01-Q4_K_M.gguf +0 -3
- Synatra_TbST02M_IN01-Q4_K_S.gguf +0 -3
- Synatra_TbST02M_IN01-Q5_0.gguf +0 -3
- Synatra_TbST02M_IN01-Q5_K_M.gguf +0 -3
- Synatra_TbST02M_IN01-Q5_K_S.gguf +0 -3
- Synatra_TbST02M_IN01-Q6_K.gguf +0 -3
- Synatra_TbST02M_IN01-Q8_0.gguf +0 -3
Synatra_TbST02M_IN01-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:fb6332a888f06cbe6e374e787435ef7e478b7b1b4c80a1063d4175bb34dbb29c
|
| 3 |
-
size 5650750496
|
|
|
|
|
|
|
|
|
|
|
|
Synatra_TbST02M_IN01-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:41132de1440630aa5f681a4d655f34f3cee07eb0e1c7a9df789471dcbdee1932
|
| 3 |
-
size 5195668512
|
|
|
|
|
|
|
|
|
|
|
|
Synatra_TbST02M_IN01-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e88b50d74c47fdf21072ca289bed5af1800157123a4f40a61640131136cfba29
|
| 3 |
-
size 4664564768
|
|
|
|
|
|
|
|
|
|
|
|
Synatra_TbST02M_IN01-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:656f626bc5136f2c472db4d2c7a59a48cf1088d381849906d5a6ce05cbe42e17
|
| 3 |
-
size 6072384544
|
|
|
|
|
|
|
|
|
|
|
|
Synatra_TbST02M_IN01-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:39b00e3a7a2fa7eceab05a699b20272d1262957d68c537e0db3b6fb4ed3f0fd7
|
| 3 |
-
size 6461668384
|
|
|
|
|
|
|
|
|
|
|
|
Synatra_TbST02M_IN01-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d56e13a54fd809fd1488017d7faf07ae9a8d1307239d7246cf0050efbbf2e4dc
|
| 3 |
-
size 6118521888
|
|
|
|
|
|
|
|
|
|
|
|
Synatra_TbST02M_IN01-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:8a2866fefe2970f625c6edc7604e8958cb9833fcb729da7bbeb7f8c6aa1b2a74
|
| 3 |
-
size 7397391392
|
|
|
|
|
|
|
|
|
|
|
|
Synatra_TbST02M_IN01-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6389ec5126652cef9c7ef98592b129eb6812c4055e9ac58753713f9d6c121188
|
| 3 |
-
size 7597931552
|
|
|
|
|
|
|
|
|
|
|
|
Synatra_TbST02M_IN01-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6459d353b055c0bb922d612bfdaa3d6207336a55b73eb1dd360f39b749a033de
|
| 3 |
-
size 7397391392
|
|
|
|
|
|
|
|
|
|
|
|
Synatra_TbST02M_IN01-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:91c9499e32a3ed73bfd0870e7fc3b16cb41393a861797e9b8a73891203c0805f
|
| 3 |
-
size 8805211168
|
|
|
|
|
|
|
|
|
|
|
|
Synatra_TbST02M_IN01-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c401bd1d4203db323a56ff43eaa771d03dc5d6fc9ed8176c7d853fa18a124a61
|
| 3 |
-
size 11404155936
|
|
|
|
|
|
|
|
|
|
|
|