CoolFace
Modelpublic

exploitintel/cve-cwe-gemma4-12b

sourceHugging Faceapache-2.0updated 4mo agoView on Hugging Face
0likes15downloads
Model Card

cve-cwe-gemma4-12b

A Gemma 4 12B fine-tune that maps a CVE description to its CWE ID(s).

๐Ÿ“– Write-up: *From Essays to `CWE-319`* โ€” how this fine-tune beats stock Gemma 4 at CWE classification
  • โ€”Input: a free-text vulnerability description (text only).
  • โ€”Output: the CWE ID(s) it maps to, comma-separated โ€” e.g. CWE-79 or CWE-89, CWE-352.
  • โ€”Label space: MITRE CWE View-1003 (~117 weakness classes). Multi-label.

This is the merged 16-bit (bf16) model for transformers / vLLM / TGI. Quantized GGUFs for Ollama and llama.cpp are at **exploitintel/cve-cwe-gemma4-12b-GGUF**.

Results

Held-out test split (exploitintel/cve-cwe-consensus, 10,514 examples), greedy decoding, description-only (no CVE-ID or label metadata in the prompt). Rows are split into easy (the weakness is named in the text) vs hard (it must be inferred).

metricthis model (bf16)v1 baseline*
exact-match0.7140.29
micro-F10.7560.32
macro-F10.5380.067
easy exact-match0.805โ€”
hard exact-match0.644โ€”

\ v1 baseline = a 1-epoch Gemma-4-E4B fine-tune. The headline gain is macro-F1 (the rare-CWE long tail), which improves ~8ร—; hard (must-infer) exact-match of 0.644 is close to easy* (0.805), indicating the model genuinely infers weaknesses rather than only keyword-matching.

Usage

Requires transformers >= 5.10 (Gemma 4 is the gemma4_unified architecture).

python
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "exploitintel/cve-cwe-gemma4-12b"
tok = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, dtype="auto", device_map="auto").eval()

cve = ("A vulnerability in the login form allows remote attackers to execute "
       "arbitrary SQL commands via the username parameter.")
messages = [
    {"role": "system", "content": "You are a vulnerability analyst. Given a CVE "
     "description, reply with only the CWE ID(s) it maps to, comma-separated."},
    {"role": "user", "content": cve},
]
prompt = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tok(prompt, return_tensors="pt").to(model.device)
out = model.generate(**inputs, max_new_tokens=32, do_sample=False)
print(tok.decode(out[0, inputs["input_ids"].shape[1]:], skip_special_tokens=True))
# -> CWE-89

Training

  • โ€”Base: unsloth/gemma-4-12b-it (4-bit QLoRA, bitsandbytes nf4).
  • โ€”Method: LoRA (r=16), 3 epochs, context length 512, full-sequence SFT.
  • โ€”Data: exploitintel/cve-cwe-consensus (train split, 50,074 examples).
  • โ€”Hardware: single NVIDIA RTX 5090; ~7.1 h wall, ~17 GB peak VRAM.
  • โ€”Trained with Unsloth.

Intended use & limitations

  • โ€”Intended use: triage assistance โ€” suggesting candidate CWE mappings for a CVE description.
  • โ€”It is description-only: quality depends on how well the text describes the weakness. Vague descriptions yield weaker predictions (see the hard split).
  • โ€”It can predict CWEs outside the true set; treat outputs as suggestions, not authoritative classifications, and keep a human in the loop for security-relevant decisions.
  • โ€”Scope is MITRE View-1003; CWEs outside that view are not modeled.

License

Apache-2.0, inherited from the Gemma 4 base model.