Views
No views yet
| Source | Examples | Description |
|---|---|---|
| Windows chat | 11,194 | Detection rules + MITRE mapping |
| Linux auditd (refined) | 15,000 | Syscall / audit event analysis |
| Sigma rules | 3,569 | Sigma detection logic |
| Final train | 11,194 | General SOC instruction data |
| EVTX dataset | 4,386 | Windows event analysis |
| Atomic | 5,553 | Atomic Red Team techniques |
| Wazuh | 1,713 | Wazuh alert interpretation |
1from unsloth import FastModel
2
3model, tokenizer = FastModel.from_pretrained(
4 model_name = "tareq052/cybersoc-gemma4-adapter",
5 max_seq_length = 1024,
6 load_in_4bit = True,
7)
8FastModel.for_inference(model)