Text Generation
Transformers
GGUF
Turkish
English
turkish
general tasks
RAG
SFT
TensorBlock
GGUF
text2text-generation
Eval Results (legacy)
conversational
Instructions to use tensorblock/cymist-2-v02-SFT-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/cymist-2-v02-SFT-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/cymist-2-v02-SFT-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/cymist-2-v02-SFT-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/cymist-2-v02-SFT-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/cymist-2-v02-SFT-GGUF", filename="cymist-2-v02-SFT-Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/cymist-2-v02-SFT-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/cymist-2-v02-SFT-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/cymist-2-v02-SFT-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/cymist-2-v02-SFT-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/cymist-2-v02-SFT-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/cymist-2-v02-SFT-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/cymist-2-v02-SFT-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/cymist-2-v02-SFT-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/cymist-2-v02-SFT-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/cymist-2-v02-SFT-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/cymist-2-v02-SFT-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/cymist-2-v02-SFT-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/cymist-2-v02-SFT-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/cymist-2-v02-SFT-GGUF:Q2_K
- SGLang
How to use tensorblock/cymist-2-v02-SFT-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/cymist-2-v02-SFT-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/cymist-2-v02-SFT-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/cymist-2-v02-SFT-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/cymist-2-v02-SFT-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/cymist-2-v02-SFT-GGUF with Ollama:
ollama run hf.co/tensorblock/cymist-2-v02-SFT-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/cymist-2-v02-SFT-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/cymist-2-v02-SFT-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/cymist-2-v02-SFT-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/cymist-2-v02-SFT-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tensorblock/cymist-2-v02-SFT-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/cymist-2-v02-SFT-GGUF:Q2_K
- Lemonade
How to use tensorblock/cymist-2-v02-SFT-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/cymist-2-v02-SFT-GGUF:Q2_K
Run and chat with the model
lemonade run user.cymist-2-v02-SFT-GGUF-Q2_K
List all available models
lemonade list
Remove .gguf files (keep Q2_K.gguf)
Browse files- cymist-2-v02-SFT-Q3_K_L.gguf +0 -3
- cymist-2-v02-SFT-Q3_K_M.gguf +0 -3
- cymist-2-v02-SFT-Q3_K_S.gguf +0 -3
- cymist-2-v02-SFT-Q4_0.gguf +0 -3
- cymist-2-v02-SFT-Q4_K_M.gguf +0 -3
- cymist-2-v02-SFT-Q4_K_S.gguf +0 -3
- cymist-2-v02-SFT-Q5_0.gguf +0 -3
- cymist-2-v02-SFT-Q5_K_M.gguf +0 -3
- cymist-2-v02-SFT-Q5_K_S.gguf +0 -3
- cymist-2-v02-SFT-Q6_K.gguf +0 -3
- cymist-2-v02-SFT-Q8_0.gguf +0 -3
cymist-2-v02-SFT-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:85c05a841731b78ac6f7304e63fa961b4db354aa2ed65360c335a576d16b41b6
|
| 3 |
-
size 3822025504
|
|
|
|
|
|
|
|
|
|
|
|
cymist-2-v02-SFT-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:2f241df5876e6c0340374c6c682584f8c54502a72250983606bfd119dddbd956
|
| 3 |
-
size 3518987040
|
|
|
|
|
|
|
|
|
|
|
|
cymist-2-v02-SFT-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:10dd79f1d10eca0ff2da26001f455960b38b1a63f07b6bffd95686c0ca9c35aa
|
| 3 |
-
size 3164568352
|
|
|
|
|
|
|
|
|
|
|
|
cymist-2-v02-SFT-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d5410b54dc16e4adf438be3e6c01df5c1a41045b884a665512a6a6f31ddc19cc
|
| 3 |
-
size 4108917536
|
|
|
|
|
|
|
|
|
|
|
|
cymist-2-v02-SFT-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:8bb450274e536da9d891ec168187b97550a3a16ba59d114ed17bccf7d62bf127
|
| 3 |
-
size 4368440096
|
|
|
|
|
|
|
|
|
|
|
|
cymist-2-v02-SFT-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ee90ad23125088690710cda0b19b9fc2cc2d54e0a0461a32765b860fe02a67c0
|
| 3 |
-
size 4140374816
|
|
|
|
|
|
|
|
|
|
|
|
cymist-2-v02-SFT-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:01caa0a19f40e5cfbdd03c8eed7b2ddc07351ba9df3e9d294a829285b1a0caa5
|
| 3 |
-
size 4997716768
|
|
|
|
|
|
|
|
|
|
|
|
cymist-2-v02-SFT-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c687b672cb292d20e793a56cfc385a98b628ecb016719087050a5b7a4428e465
|
| 3 |
-
size 5131410208
|
|
|
|
|
|
|
|
|
|
|
|
cymist-2-v02-SFT-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:90e7915a64c2a9f88d3cbcdb0b552ac86007e0e4c4a5c2aefff0a87076e526ce
|
| 3 |
-
size 4997716768
|
|
|
|
|
|
|
|
|
|
|
|
cymist-2-v02-SFT-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5ae333ed631a53b87c12755dccb01cb2ca848cacdb7a405b77c23119923ebb0d
|
| 3 |
-
size 5942065952
|
|
|
|
|
|
|
|
|
|
|
|
cymist-2-v02-SFT-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b65528b831866bd1a6a0b4145b3749939b0358d511ecfb150846fa5941a4e892
|
| 3 |
-
size 7695858464
|
|
|
|
|
|
|
|
|
|
|
|