Text Generation
Transformers
GGUF
Turkish
English
turkish
general tasks
RAG
SFT
TensorBlock
GGUF
text2text-generation
conversational
Instructions to use tensorblock/cymist2-v01-SFT-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/cymist2-v01-SFT-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/cymist2-v01-SFT-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/cymist2-v01-SFT-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/cymist2-v01-SFT-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/cymist2-v01-SFT-GGUF", filename="cymist2-v01-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/cymist2-v01-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/cymist2-v01-SFT-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/cymist2-v01-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/cymist2-v01-SFT-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/cymist2-v01-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/cymist2-v01-SFT-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/cymist2-v01-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/cymist2-v01-SFT-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/cymist2-v01-SFT-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/cymist2-v01-SFT-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/cymist2-v01-SFT-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/cymist2-v01-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/cymist2-v01-SFT-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/cymist2-v01-SFT-GGUF:Q2_K
- SGLang
How to use tensorblock/cymist2-v01-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/cymist2-v01-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/cymist2-v01-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/cymist2-v01-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/cymist2-v01-SFT-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/cymist2-v01-SFT-GGUF with Ollama:
ollama run hf.co/tensorblock/cymist2-v01-SFT-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/cymist2-v01-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/cymist2-v01-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/cymist2-v01-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/cymist2-v01-SFT-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tensorblock/cymist2-v01-SFT-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/cymist2-v01-SFT-GGUF:Q2_K
- Lemonade
How to use tensorblock/cymist2-v01-SFT-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/cymist2-v01-SFT-GGUF:Q2_K
Run and chat with the model
lemonade run user.cymist2-v01-SFT-GGUF-Q2_K
List all available models
lemonade list
Remove .gguf files (keep Q2_K.gguf)
Browse files- cymist2-v01-SFT-Q3_K_L.gguf +0 -3
- cymist2-v01-SFT-Q3_K_M.gguf +0 -3
- cymist2-v01-SFT-Q3_K_S.gguf +0 -3
- cymist2-v01-SFT-Q4_0.gguf +0 -3
- cymist2-v01-SFT-Q4_K_M.gguf +0 -3
- cymist2-v01-SFT-Q4_K_S.gguf +0 -3
- cymist2-v01-SFT-Q5_0.gguf +0 -3
- cymist2-v01-SFT-Q5_K_M.gguf +0 -3
- cymist2-v01-SFT-Q5_K_S.gguf +0 -3
- cymist2-v01-SFT-Q6_K.gguf +0 -3
- cymist2-v01-SFT-Q8_0.gguf +0 -3
cymist2-v01-SFT-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ad9d928061e825242c4847f6444448abc5630e877e3f69cb9ce3ebfee013cf4c
|
| 3 |
-
size 3822025248
|
|
|
|
|
|
|
|
|
|
|
|
cymist2-v01-SFT-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:2278bde4806d38aaf3d5280de6741cd677649134d11be76c5dadde19cad6eb7f
|
| 3 |
-
size 3518986784
|
|
|
|
|
|
|
|
|
|
|
|
cymist2-v01-SFT-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:2cfe2405d2b539c02129013ba940d432d09518990398a99dc79e153234dc5949
|
| 3 |
-
size 3164568096
|
|
|
|
|
|
|
|
|
|
|
|
cymist2-v01-SFT-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d25e2402f632b620bcecd591dcbbe8d761517b4323dee1ad41e6b6e7c05b648a
|
| 3 |
-
size 4108917280
|
|
|
|
|
|
|
|
|
|
|
|
cymist2-v01-SFT-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:681a018ae80df1f1087d77a8d472a215457042de3a9d7169224b63c0936a0f1a
|
| 3 |
-
size 4368439840
|
|
|
|
|
|
|
|
|
|
|
|
cymist2-v01-SFT-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:268b22a65f727e1792aaf0495c0b0a99e85bb3c4ac5b173b6103f4e6da8c028c
|
| 3 |
-
size 4140374560
|
|
|
|
|
|
|
|
|
|
|
|
cymist2-v01-SFT-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:3b880a91ebfb066b541afd69b5f590e70c4084d2a9f9b8d9eb35893f4c07c88a
|
| 3 |
-
size 4997716512
|
|
|
|
|
|
|
|
|
|
|
|
cymist2-v01-SFT-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:144141696d75afc64c56469950a1c07058c52fc3ce3e76e85c1f8e47652b238b
|
| 3 |
-
size 5131409952
|
|
|
|
|
|
|
|
|
|
|
|
cymist2-v01-SFT-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:cba98d54d166abcd1f254d62a21355796ee3a33d82bbeece8c2dbdaf848ab79a
|
| 3 |
-
size 4997716512
|
|
|
|
|
|
|
|
|
|
|
|
cymist2-v01-SFT-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:8a02c5babfe58032f0cc5ba986eeed1709f91e62d35c48487c06dcb5a7b9db66
|
| 3 |
-
size 5942065696
|
|
|
|
|
|
|
|
|
|
|
|
cymist2-v01-SFT-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a8d3e0a991abf1ce00987a22cf720e2827b92f239930f4bfce2dfa6e0c43103a
|
| 3 |
-
size 7695858208
|
|
|
|
|
|
|
|
|
|
|
|