CoolFace
Modelpublic

lablab-ai-amd-developer-hackathon/Qwen-security-builder-14b

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
1likes24downloads
Model Card

๐Ÿ”ง Security Builder Model (14B)

Fine-tuned Qwen2.5-Coder-14B-Instruct khusus untuk generasi patch keamanan & penulisan kode aman. Melengkapi Auditor model dengan mengubah laporan kerentanan menjadi kode perbaikan yang production-ready.

๐Ÿš€ Quick Load

python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

model_id = "lablab-ai-amd-developer-hackathon/security-builder-14b"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.float16, device_map="auto")

###  ๐Ÿ’ฌ Example Usage (JSON Mode)
messages = [
    {"role": "user", "content": "Fix the buffer overflow and return JSON with keys: fixed_code, explanation, cwe_mitigated."}
]
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)

with torch.no_grad():
    output = model.generate(**inputs, max_new_tokens=512, temperature=0.1)

import json
print(json.loads(tokenizer.decode(output[0][inputs.input_ids.shape[1]:], skip_special_tokens=True)))
๐Ÿ› ๏ธ Technical Specifications
ParameterValue
Base ModelQwen2.5-Coder-14B-Instruct
Fine-tuningLoRA (r=64, alpha=128, dropout=0.05)
Training DataCustom secure coding & patch dataset
Epochs3
Precisionfloat16 (ROCm-optimized)
FormatSafetensors (6 shards, ~28GB)
VRAM Required~38-42 GB
๐Ÿ–ฅ๏ธ ROCm & Hardware Optimization

Dioptimalkan untuk AMD Instinct MI300X / ROCm 7.0. Disarankan set env var berikut sebelum inference: export HSAOVERRIDEGFXVERSION=11.0.0 export PYTORCHHIPALLOCCONF=expandable_segments:False

๐Ÿ”Œ API Integration

Designed for CI/CD integration. Gunakan responseformat={"type":"jsonobject"} untuk parsing otomatis patch & metadata keamanan.

๐Ÿ“œ License & Credits

Apache 2.0. Developed for the AMD Developer Hackathon 2026.