CoolFace
Modelpublic

Orionfold/SecurityLLM-GGUF

sourceHugging Faceapache-2.0updated 4mo agoView on Hugging Face
1likes128downloads
Model Card

SecurityLLM GGUF

GGUF quantizations of ZySec-AI/SecurityLLM, verified end-to-end on the NVIDIA DGX Spark (GB10, 128 GB unified memory).

Notebooks

Two runnable notebooks ship with this model — open either on a free cloud GPU:

NotebookWhat it doesOpen
BuilderReproduce this model's build and DGX Spark benchmarks end-to-end with fieldkit.![Open In Colab](https://colab.research.google.com/github/manavsehgal/ai-field-notes/blob/main/notebooks/cyber/builder.ipynb) ![Open in Kaggle](https://kaggle.com/kernels/welcome?src=https://github.com/manavsehgal/ai-field-notes/blob/main/notebooks/cyber/builder.ipynb)
UserLoad the published model and call it from your own app in a few lines.![Open In Colab](https://colab.research.google.com/github/manavsehgal/ai-field-notes/blob/main/notebooks/cyber/user.ipynb) ![Open in Kaggle](https://kaggle.com/kernels/welcome?src=https://github.com/manavsehgal/ai-field-notes/blob/main/notebooks/cyber/user.ipynb)

Spark-tested

Every Orionfold quant ships with a measurement quad on the NVIDIA DGX Spark (GB10, 128 GB unified memory): perplexity, sustained tok/s, thermal envelope, and CyberMetric (n=50, mcq_letter) accuracy. The numbers below are the actual run, not a wishlist.

VariantSizePerplexity (wikitext-2)tok/s on SparkCyberMetric (n=50, mcq_letter)
Q4KM4.1 GB7.40047.740.0%
Q5KM4.8 GB7.31440.038.0%
Q6_K5.5 GB7.31335.036.0%
Q8_07.2 GB7.30730.336.0%
F1613.5 GB7.30117.434.0%

Thermal envelope: sustained-load minutes before thermal throttle on a single GB10 = 5 min. Beyond this, expect tok/s degradation; the duty-cycle disclosure is per Orionfold's quant-card standard.

Variants

VariantRecommended use
Q4KMBest balance — fits comfortably in Spark unified memory at 70B; default pick.
Q5KMHigher quality than Q4KM with modest size bump.
Q6_KNear-lossless; recommended if memory headroom allows.
Q8_0Effectively lossless; reach for this when quality matters more than throughput.
F16Reference — no quantization. Use only for measurement / baseline.

How to run

Pull a variant:

bash
huggingface-cli download Orionfold/SecurityLLM-GGUF model-Q5_K_M.gguf \
  --local-dir ./models/securityllm

Serve it via llama-server (OpenAI-compatible API):

bash
llama-server -m ./models/securityllm/model-Q5_K_M.gguf \
  -c 4096 -ngl 99 -t 8 \
  --host 0.0.0.0 --port 8080

Or run in-process via llama-cpp-python:

python
from llama_cpp import Llama
llm = Llama(
    model_path="./models/securityllm/model-Q5_K_M.gguf",
    n_ctx=4096, n_gpu_layers=99, chat_format="zephyr",
)
out = llm.create_chat_completion(
    messages=[
        {"role": "user",
         "content": "What is the primary purpose of a key-derivation function (KDF)?\n\n"
                    "A) Generate public keys\n"
                    "B) Authenticate digital signatures\n"
                    "C) Encrypt data using a password\n"
                    "D) Transform a secret into keys and Initialization Vectors\n\n"
                    "Reply with only the single letter A, B, C, or D."}
    ],
    temperature=0.0,
)
print(out["choices"][0]["message"]["content"])

LM Studio and Ollama (via a Modelfile) load the GGUF directly with no additional setup.

Methods

Full methodology and Spark-side measurement protocol: Vertical-curator quants on Spark — SecurityLLM-GGUF + CyberMetric mini-eval.

Other Orionfold vertical curators

Same Spark-tested recipe across the curator-on-Spark series:

  • [finance-chat-GGUF](https://huggingface.co/Orionfold/finance-chat-GGUF) — AdaptLLM finance-chat (Llama-2-7B lineage) for FinanceBench-shaped queries
  • [Saul-7B-Instruct-v1-GGUF](https://huggingface.co/Orionfold/Saul-7B-Instruct-v1-GGUF) — Equall Saul-7B legal-instruct for LegalBench-shaped queries
  • [II-Medical-8B-GGUF](https://huggingface.co/Orionfold/II-Medical-8B-GGUF) — Qwen3-8B + DAPO reasoning for MedMCQA-shaped queries

Each card lists its own measurement quad; the headline numbers are recorded as the actual sweep ran, never pre-corrected.


Published by Orionfold LLC · orionfold.com · Methods documented at ainative.business/field-notes.

Want to know when the next Orionfold vertical curator drops? Join the launch list at orionfold.com.