Instructions to use ZeroWw/Seed-Coder-8B-Reasoning-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use ZeroWw/Seed-Coder-8B-Reasoning-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="ZeroWw/Seed-Coder-8B-Reasoning-GGUF", filename="Seed-Coder-8B-Reasoning.f16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use ZeroWw/Seed-Coder-8B-Reasoning-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf ZeroWw/Seed-Coder-8B-Reasoning-GGUF:F16 # Run inference directly in the terminal: llama-cli -hf ZeroWw/Seed-Coder-8B-Reasoning-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf ZeroWw/Seed-Coder-8B-Reasoning-GGUF:F16 # Run inference directly in the terminal: llama-cli -hf ZeroWw/Seed-Coder-8B-Reasoning-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 ZeroWw/Seed-Coder-8B-Reasoning-GGUF:F16 # Run inference directly in the terminal: ./llama-cli -hf ZeroWw/Seed-Coder-8B-Reasoning-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 ZeroWw/Seed-Coder-8B-Reasoning-GGUF:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf ZeroWw/Seed-Coder-8B-Reasoning-GGUF:F16
Use Docker
docker model run hf.co/ZeroWw/Seed-Coder-8B-Reasoning-GGUF:F16
- LM Studio
- Jan
- vLLM
How to use ZeroWw/Seed-Coder-8B-Reasoning-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ZeroWw/Seed-Coder-8B-Reasoning-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": "ZeroWw/Seed-Coder-8B-Reasoning-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ZeroWw/Seed-Coder-8B-Reasoning-GGUF:F16
- Ollama
How to use ZeroWw/Seed-Coder-8B-Reasoning-GGUF with Ollama:
ollama run hf.co/ZeroWw/Seed-Coder-8B-Reasoning-GGUF:F16
- Unsloth Studio new
How to use ZeroWw/Seed-Coder-8B-Reasoning-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 ZeroWw/Seed-Coder-8B-Reasoning-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 ZeroWw/Seed-Coder-8B-Reasoning-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for ZeroWw/Seed-Coder-8B-Reasoning-GGUF to start chatting
- Docker Model Runner
How to use ZeroWw/Seed-Coder-8B-Reasoning-GGUF with Docker Model Runner:
docker model run hf.co/ZeroWw/Seed-Coder-8B-Reasoning-GGUF:F16
- Lemonade
How to use ZeroWw/Seed-Coder-8B-Reasoning-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ZeroWw/Seed-Coder-8B-Reasoning-GGUF:F16
Run and chat with the model
lemonade run user.Seed-Coder-8B-Reasoning-GGUF-F16
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +6 -0
- README.md +17 -0
- Seed-Coder-8B-Reasoning.f16.gguf +3 -0
- Seed-Coder-8B-Reasoning.q5_k.gguf +3 -0
- Seed-Coder-8B-Reasoning.q6_k.gguf +3 -0
- Seed-Coder-8B-Reasoning.q8_0.gguf +3 -0
- Seed-Coder-8B-Reasoning.q8_p.gguf +3 -0
- Seed-Coder-8B-Reasoning.q8q4.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,9 @@ 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 |
+
Seed-Coder-8B-Reasoning.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Seed-Coder-8B-Reasoning.q5_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Seed-Coder-8B-Reasoning.q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Seed-Coder-8B-Reasoning.q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Seed-Coder-8B-Reasoning.q8_p.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Seed-Coder-8B-Reasoning.q8q4.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
license: mit
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
pipeline_tag: text-generation
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
My own (ZeroWw) quantizations.
|
| 10 |
+
output and embed tensors quantized to f16.
|
| 11 |
+
all other tensors quantized to q5_k or q6_k.
|
| 12 |
+
|
| 13 |
+
Result:
|
| 14 |
+
both f16.q6 and f16.q5 are smaller than q8_0 standard quantization
|
| 15 |
+
and they perform as well as the pure f16.
|
| 16 |
+
|
| 17 |
+
Updated on: Mon May 12, 11:36:29
|
Seed-Coder-8B-Reasoning.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51f1e35cc3b57da1ae5edc44114d0c4847689bc7942b570bcd042734960930dd
|
| 3 |
+
size 16507720608
|
Seed-Coder-8B-Reasoning.q5_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f788036251231209c3a66141a22b335821e70e27693dd7d216381b1203d583d9
|
| 3 |
+
size 7481054112
|
Seed-Coder-8B-Reasoning.q6_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b40a4abe286ee1055ef478412d425419e578081060e5126c18f60b08913ed7d0
|
| 3 |
+
size 8274301856
|
Seed-Coder-8B-Reasoning.q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c242ce9b6044fe41e0e912e33dd442bf6fbf962c9d80693b9b83b6f2f7dcf83e
|
| 3 |
+
size 9964606368
|
Seed-Coder-8B-Reasoning.q8_p.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f34c503b4843a4f1c90fe1df6017a1edeaaee1fc3aab2fb5d318aef403ad58a
|
| 3 |
+
size 8773161888
|
Seed-Coder-8B-Reasoning.q8q4.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2cbce951be678a551646feab65522e1c88a094ab8ff9d3da2fc5cbf87bf048a6
|
| 3 |
+
size 5543023520
|