Instructions to use tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/rohinm_self_eval_model_logistic_qwen-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/rohinm_self_eval_model_logistic_qwen-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/rohinm_self_eval_model_logistic_qwen-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/rohinm_self_eval_model_logistic_qwen-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/rohinm_self_eval_model_logistic_qwen-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/rohinm_self_eval_model_logistic_qwen-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/rohinm_self_eval_model_logistic_qwen-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/rohinm_self_eval_model_logistic_qwen-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF with Ollama:
ollama run hf.co/tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/rohinm_self_eval_model_logistic_qwen-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/rohinm_self_eval_model_logistic_qwen-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/rohinm_self_eval_model_logistic_qwen-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/rohinm_self_eval_model_logistic_qwen-GGUF to start chatting
- Pi
How to use tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/rohinm_self_eval_model_logistic_qwen-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/rohinm_self_eval_model_logistic_qwen-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF:Q2_K
- Lemonade
How to use tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF:Q2_K
Run and chat with the model
lemonade run user.rohinm_self_eval_model_logistic_qwen-GGUF-Q2_K
List all available models
lemonade list
- Hermes Agent
How to use tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/rohinm_self_eval_model_logistic_qwen-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/rohinm_self_eval_model_logistic_qwen-GGUF:Q2_K
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF:Q2_K
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "tensorblock/rohinm_self_eval_model_logistic_qwen-GGUF:Q2_K" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Remove .gguf files (keep Q2_K.gguf)
Browse files- self_eval_model_logistic_qwen-Q3_K_L.gguf +0 -3
- self_eval_model_logistic_qwen-Q3_K_M.gguf +0 -3
- self_eval_model_logistic_qwen-Q3_K_S.gguf +0 -3
- self_eval_model_logistic_qwen-Q4_0.gguf +0 -3
- self_eval_model_logistic_qwen-Q4_K_M.gguf +0 -3
- self_eval_model_logistic_qwen-Q4_K_S.gguf +0 -3
- self_eval_model_logistic_qwen-Q5_0.gguf +0 -3
- self_eval_model_logistic_qwen-Q5_K_M.gguf +0 -3
- self_eval_model_logistic_qwen-Q5_K_S.gguf +0 -3
- self_eval_model_logistic_qwen-Q6_K.gguf +0 -3
- self_eval_model_logistic_qwen-Q8_0.gguf +0 -3
self_eval_model_logistic_qwen-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4d00769577b6b0103e4cf77f82454414f6c1187adea6a0b092e51563f3e68cec
|
| 3 |
-
size 1003501152
|
|
|
|
|
|
|
|
|
|
|
|
self_eval_model_logistic_qwen-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:8b39cd0bbd31a8f8522edfc8478b35d933f06fd29e24979ece07d59ed192ba2f
|
| 3 |
-
size 939538016
|
|
|
|
|
|
|
|
|
|
|
|
self_eval_model_logistic_qwen-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:536fceebf55eb2a9aa821546860ee8cac585c75c265e81f63f52ed6b530da25e
|
| 3 |
-
size 867251808
|
|
|
|
|
|
|
|
|
|
|
|
self_eval_model_logistic_qwen-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:9149047d3d53f0c96133b3895e590641936af3e1e4af0d53ecab6bf6d9537a3c
|
| 3 |
-
size 1054422624
|
|
|
|
|
|
|
|
|
|
|
|
self_eval_model_logistic_qwen-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:345915612ff804522041a0241825309221aeb772e9e5913ebbb8460ebe856a78
|
| 3 |
-
size 1107408480
|
|
|
|
|
|
|
|
|
|
|
|
self_eval_model_logistic_qwen-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:62e508089c5c4da7abe4a1db2863fd10e0a0e62f4e26a481809e129a4b39fa61
|
| 3 |
-
size 1060189792
|
|
|
|
|
|
|
|
|
|
|
|
self_eval_model_logistic_qwen-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0827263bae5b6f83d87b3d7a9b1c9cc54d6b4bdf65d7e19089dfb24bc0c95bc0
|
| 3 |
-
size 1230583392
|
|
|
|
|
|
|
|
|
|
|
|
self_eval_model_logistic_qwen-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4baaafa1738d381d62e5ed84c0302e3aab94ba8d944b1c15b8fcea9f957a1870
|
| 3 |
-
size 1257879136
|
|
|
|
|
|
|
|
|
|
|
|
self_eval_model_logistic_qwen-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0692d941525de158266a596ecb32544eab45cafc789dee2e2de03354a278ec1e
|
| 3 |
-
size 1230583392
|
|
|
|
|
|
|
|
|
|
|
|
self_eval_model_logistic_qwen-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:f8cb71cd272a23cace720cde4706e1fca7874d34f2b158ee4d39f67af503f85b
|
| 3 |
-
size 1417754208
|
|
|
|
|
|
|
|
|
|
|
|
self_eval_model_logistic_qwen-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c470fc24eaccc89343874ed10ad609e87c67f4268a051ed0b8bb0f3ac2624ef7
|
| 3 |
-
size 1834425952
|
|
|
|
|
|
|
|
|
|
|
|