cyberforge-models / README.md
Che237's picture
Update CyberForge ML models and deployment artifacts
eedf0d4 verified
|
Raw
History Blame Contribute Delete
1.05 kB
metadata
license: mit
tags:
  - cybersecurity
  - threat-detection
  - phishing
  - malware
  - security
language:
  - en

CyberForge AI Models

Production-ready machine learning models for cybersecurity threat detection.

Models Included

Model Task Accuracy F1 Score Inference Time

Usage

Python

from inference import CyberForgeInference

inference = CyberForgeInference('./models')
result = inference.predict('phishing_detection', features)

API

import requests

response = requests.post(
    'https://huggingface.co/spaces/Che237/cyberforge/predict',
    json={'model_name': 'phishing_detection', 'features': features}
)

Model Details

  • Framework: scikit-learn
  • Python Version: 3.11+
  • License: MIT

Citation

If you use these models, please cite:

@software{cyberforge2024,
  title = {CyberForge AI Security Models},
  year = {2024},
  url = {https://huggingface.co/Che237/cyberforge-models}
}