Views
No views yet
| Metric | Value |
|---|---|
| Accuracy | 0.9277 |
| F1 | 0.9028 |
| Precision | 0.9407 |
| Recall | 0.8921 |
| FPR | 0.0367 |
| Query Time | 0.291 ms/domain (CPU) |
1from huggingface_hub import hf_hub_download
2import importlib.util
3
4artifacts_path = hf_hub_download("Reynier/dga-logit", "artifacts.joblib")
5model_py = hf_hub_download("Reynier/dga-logit", "model.py")
6
7spec = importlib.util.spec_from_file_location("logit_model", model_py)
8mod = importlib.util.module_from_spec(spec)
9spec.loader.exec_module(mod)
10
11artifacts = mod.load_model(artifacts_path)
12results = mod.predict(artifacts, ["google.com", "xkr3f9mq.ru"])
13print(results)1@article{reynier2026dga,
2 title={DGA Multi-Family Benchmark: Comparing Classical and Transformer-based Detectors},
3 author={Reynier et al.},
4 year={2026}
5}