Instructions to use ramgpt/Jev_Qwen3.8-27B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use ramgpt/Jev_Qwen3.8-27B-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 ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M
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 ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M
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 ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use ramgpt/Jev_Qwen3.8-27B-GGUF with Ollama:
ollama run hf.co/ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use ramgpt/Jev_Qwen3.8-27B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use ramgpt/Jev_Qwen3.8-27B-GGUF with Docker Model Runner:
docker model run hf.co/ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M
- Lemonade
How to use ramgpt/Jev_Qwen3.8-27B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Jev_Qwen3.8-27B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use ramgpt/Jev_Qwen3.8-27B-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 ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M
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 ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use ramgpt/Jev_Qwen3.8-27B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M
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 "ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M" \ --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"
Jev_Qwen3.8-27B-GGUF
GGUF quantization of SargeDev/Jev_Qwen3.8-27B.
Available quant
- Jev_Qwen3.8-27B-Q4_K_M.gguf — Q4_K_M, about 15.8 GiB, 4.92 BPW
SHA256:
c6260f14c63942d4f468176d4a24838684976b5f1b2789bb3d6c06491d877809
Important conversion note
The source config declares mtp_num_hidden_layers: 1, but the published source weights contain 64 main blocks (blk.0 through blk.63) and no MTP / NextN tensors.
A normal conversion therefore advertises 65 blocks and fails to load in llama.cpp because blk.64.* tensors are absent.
This target GGUF was converted with llama.cpp bd4f514 using --no-mtp, which produces the correct 64-block target model.
Smoke test
Validated with llama.cpp bd4f514 on an RTX 4090.
The source model was trained with thinking disabled. For the tuned behavior, use reasoning off.
Example:
llama-cli -m Jev_Qwen3.8-27B-Q4_K_M.gguf -ngl 999 -c 4096 --reasoning off
Observed behavior matches the source model card's stated goal: brief calibrated judgments with explicit confidence and less verbose hedging.
Calibration A/B
A small held-out A/B test was run against the model's exact upstream base, huihui-ai/Huihui-Qwen3.8-27B-abliterated, using the same Q4_K_M class, llama.cpp bd4f514, reasoning off, temperature 0, and identical prompts.
The primary sample contained 90 held-out rows from SargeDev/jev-distill-corpus-v3/test_set_30k: 30 noul, 30 choice, and 30 score.
| Metric | Huihui base | Jev |
|---|---|---|
| Brier score ↓ | 0.2703 | 0.1471 |
| Argmax accuracy | 53.3% | 68.9% |
| Overconfidence gap ↓ | +0.208 | +0.012 |
| Soft ECE-10 ↓ | 0.208 | 0.085 |
| Top-class Brier ↓ | 0.1138 | 0.0642 |
Paired Brier delta (Jev - base) was -0.1232 with a bootstrap 95% CI of [-0.1905, -0.0678]. Jev had lower Brier error on 60 rows, tied on 9, and was worse on 21.
Argmax disagreements also favored Jev: 19 rows were correct only for Jev versus 5 correct only for the base (McNemar exact p = 0.0066).
By decision type
| Type | Huihui Brier | Jev Brier |
|---|---|---|
| noul | 0.2708 | 0.1280 |
| choice | 0.3480 | 0.1791 |
| score | 0.1921 | 0.1343 |
Important caveats
This does not establish universal real-world calibration superiority.
- Much of the yuri_v3 target distribution was distilled from Jev 1.13, so Jev has a same-family teacher advantage on those labels.
- A separate source-balanced 90-row sanity check still improved Brier overall (0.3216 → 0.2353), but the paired 95% CI was only just below zero.
- openjev_v2 alone showed no clear advantage.
- Jev assigns exact 0.0 probability more often than the base. This can badly hurt KL/log-loss when target mass is nonzero.
- Jev often prepends phrases such as "My calibrated probability:" before otherwise valid JSON, so strict JSON compliance is lower than the base.
An exploratory post-processing sweep found that a small amount of uniform probability smoothing can improve both Brier and log-loss by reducing the exact-zero issue. Because the smoothing strength was inspected on evaluation data, this is a diagnostic result rather than a recommended calibrated setting.
Source
- Model: SargeDev/Jev_Qwen3.8-27B
- Base: huihui-ai/Huihui-Qwen3.8-27B-abliterated
- Dataset: SargeDev/jev-distill-corpus-v3
All model credit belongs to the original authors. This repository provides the GGUF conversion.
- Downloads last month
- 185
4-bit
Model tree for ramgpt/Jev_Qwen3.8-27B-GGUF
Base model
Qwen/Qwen3.8-27B
ollama run hf.co/ramgpt/Jev_Qwen3.8-27B-GGUF:Q4_K_M