Instructions to use tensorblock/base-eval-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use tensorblock/base-eval-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/base-eval-GGUF", filename="base-eval-Q2_K.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 tensorblock/base-eval-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/base-eval-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/base-eval-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/base-eval-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/base-eval-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/base-eval-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/base-eval-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/base-eval-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/base-eval-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/base-eval-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/base-eval-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/base-eval-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/base-eval-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/base-eval-GGUF:Q2_K
- Ollama
How to use tensorblock/base-eval-GGUF with Ollama:
ollama run hf.co/tensorblock/base-eval-GGUF:Q2_K
- Unsloth Studio new
How to use tensorblock/base-eval-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/base-eval-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/base-eval-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/base-eval-GGUF to start chatting
- Pi new
How to use tensorblock/base-eval-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf tensorblock/base-eval-GGUF:Q2_K
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "tensorblock/base-eval-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use tensorblock/base-eval-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf tensorblock/base-eval-GGUF:Q2_K
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default tensorblock/base-eval-GGUF:Q2_K
Run Hermes
hermes
- Docker Model Runner
How to use tensorblock/base-eval-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/base-eval-GGUF:Q2_K
- Lemonade
How to use tensorblock/base-eval-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/base-eval-GGUF:Q2_K
Run and chat with the model
lemonade run user.base-eval-GGUF-Q2_K
List all available models
lemonade list
Remove .gguf files (keep Q2_K.gguf)
Browse files- base-eval-Q3_K_L.gguf +0 -3
- base-eval-Q3_K_M.gguf +0 -3
- base-eval-Q3_K_S.gguf +0 -3
- base-eval-Q4_0.gguf +0 -3
- base-eval-Q4_K_M.gguf +0 -3
- base-eval-Q4_K_S.gguf +0 -3
- base-eval-Q5_0.gguf +0 -3
- base-eval-Q5_K_M.gguf +0 -3
- base-eval-Q5_K_S.gguf +0 -3
- base-eval-Q6_K.gguf +0 -3
- base-eval-Q8_0.gguf +0 -3
base-eval-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d7035a22fbe0d34c04cd6c3e093ba3742527f0e73d887dc1908cd0b1b50291c1
|
| 3 |
-
size 4321961248
|
|
|
|
|
|
|
|
|
|
|
|
base-eval-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ecfa5f135808f25cdc66dd3257c9e96cf08480afbc829d014d4c5bd08873d391
|
| 3 |
-
size 4018922784
|
|
|
|
|
|
|
|
|
|
|
|
base-eval-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:600029760c0df5f9b269e5daf7de7f9e2265e676c56b9ace71a7409ef613818d
|
| 3 |
-
size 3664504096
|
|
|
|
|
|
|
|
|
|
|
|
base-eval-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:59bf0e14283e6d7f9be83fb4e8a969e8856b1646c584fe30713d3d44658999d0
|
| 3 |
-
size 4661216544
|
|
|
|
|
|
|
|
|
|
|
|
base-eval-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:439e6a71f1205d6a26f69314445b700802236ac8f452b8e6f089f3c93a44f545
|
| 3 |
-
size 4920739104
|
|
|
|
|
|
|
|
|
|
|
|
base-eval-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:3d6ed96e6a82d73a5e254cc9ff5c6479fe99633d9db773b37c8731a73979645e
|
| 3 |
-
size 4692673824
|
|
|
|
|
|
|
|
|
|
|
|
base-eval-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0baac95a4cc9d9c0e32f9826f2566f09bb0cbb9b98e4b02408e7f588e36c8df8
|
| 3 |
-
size 5599298848
|
|
|
|
|
|
|
|
|
|
|
|
base-eval-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:8727603273370623839451bf6b071e9d1aecb49c91e7576eab87ff5eebf0d1b4
|
| 3 |
-
size 5732992288
|
|
|
|
|
|
|
|
|
|
|
|
base-eval-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:124cb81dec9f2ed62a2589281e2b81ca9d3c007335d77ffed6a3a27eda9e5488
|
| 3 |
-
size 5599298848
|
|
|
|
|
|
|
|
|
|
|
|
base-eval-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:f0549d4920da151c1435280c722f2e3c370bf6ed46c7d2a46b163470afe2f918
|
| 3 |
-
size 6596011296
|
|
|
|
|
|
|
|
|
|
|
|
base-eval-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6e9ff4ab502d684026e8af00e8a3e3dc1609a7d17f7d6fc09587f95940d27a84
|
| 3 |
-
size 8540775712
|
|
|
|
|
|
|
|
|
|
|
|