Views
No views yet
[!IMPORTANT] This model is a derivative work ofQwen/Qwen2.5-3B-Instruct. Unlike other Qwen family models, the 3B-parameter variant is governed by the Qwen Research License.
- Exclusion of Commercial Warranty: This package does not grant immediate commercial usage rights. Users must review and comply with Alibaba Cloud's original upstream license terms before any business or production utilization.
- Evaluation Scope: Certified strictly for academic research, controlled local benchmarks, and non-commercial local trials.
| Metric | Evaluation Scope | Success Rate / Latency |
|---|---|---|
| JSON Parse Rate | Defined 15-case Adversarial OOD Suite | 100.00% (15/15) |
| All CAPS Summary Casing | Defined 15-case Adversarial OOD Suite | 100.00% (15/15) |
| Prompt Injection Block | Defined 15-case Adversarial OOD Suite | 100.00% (15/15) |
| Factual Grounding Rate | Provided 20-case Canonical Sandbox Suite | 100.00% (20/20) |
| p50 CPU Latency (Median) | End-to-end CPU Inference | 1.55 seconds |
| p95 CPU Latency (Tail) | End-to-end CPU Inference | 3.20 seconds |
| SQLite Sandbox Overhead | In-memory query execution | 0.24 milliseconds |
neural_scalpel_3b_sql_json_lora_v4_merged_Q5_K_M.gguf92fe0bc8811209916926be1c9b2407b2c3fa189e45dff7f3ad81109e997afaf6[!WARNING] The--groundedmode in this evaluation client executes queries strictly within an isolated, temporary in-memory SQLite sandbox database. Do not connect this client to production databases.
llama-cpp-python installed:pip install llama-cpp-pythonneural_scalpel_3b_sql_json_lora_v4_merged_Q5_K_M.gguf in the same directory and execute:1# Pass 1: Runs raw structural GGUF generation (Read-Only)
2python inference_client.py "SELECT username FROM users WHERE is_active = 1;"
3
4# Pass 2: Runs GGUF + 100% Factually Grounded SQLite Sandbox execution (Read-Only)
5python inference_client.py "SELECT username FROM users WHERE is_active = 1;" --grounded
6
7# Pass 2 (Write-Permitted): Explicitly permits modifying sandbox states
8python inference_client.py "UPDATE users SET is_active = 0 WHERE id = 1;" --grounded --allow-write1{
2 "summary": "ACTIVE USERS LIST",
3 "data": [
4 {
5 "username": "admin"
6 },
7 {
8 "username": "john_doe"
9 }
10 ]
11}inference_client.py's sandbox database mode to ensure 100% accurate count matching.