malware-detector-demo / index.html
dev9269's picture
Revamp demo Space: matrix theme, model links, proper landing
9725700
Raw
History Blame Contribute Delete
1.08 kB
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Malware Detector Demo</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="card">
<h1>🛡️ Malware Detector</h1>
<p class="subtitle">Random Forest PE Malware Classifier</p>
<hr>
<p>Upload a PE file (EXE, DLL) or paste feature vector data to get a malicious/benign prediction with confidence score.</p>
<p class="info">⬇️ <strong>Model:</strong> Random Forest (scikit-learn) trained on EMBER dataset</p>
<p class="info">📊 <strong>Accuracy:</strong> ~96% | <strong>AUC-ROC:</strong> ~0.99</p>
<hr>
<div class="links">
<a href="https://huggingface.co/dev9269/malware-detector-rf" target="_blank">Model Card</a>
<a href="https://github.com/Dev9269/malware-detector" target="_blank">Source Code</a>
<a href="https://huggingface.co/dev9269/ember-malware-rf" target="_blank">EMBER Variant</a>
</div>
</div>
</body>
</html>