File size: 1,050 Bytes
acfe647 0653333 acfe647 0653333 acfe647 0653333 acfe647 0653333 acfe647 0653333 acfe647 0653333 acfe647 0653333 acfe647 0653333 acfe647 0653333 acfe647 0653333 acfe647 0653333 acfe647 0653333 acfe647 0653333 acfe647 0653333 acfe647 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
---
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
```python
from inference import CyberForgeInference
inference = CyberForgeInference('./models')
result = inference.predict('phishing_detection', features)
```
### API
```python
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:
```bibtex
@software{cyberforge2024,
title = {CyberForge AI Security Models},
year = {2024},
url = {https://huggingface.co/Che237/cyberforge-models}
}
```
|