Views
No views yet
| subfolder | dataset | vocab | batch | AUROC / best-F1 (error_mean) |
|---|---|---|---|---|
bgl | BGL | 1000 | 32 | 1.000 / 1.000 |
hdfs | HDFS | 200 | 32 | 0.997 / 0.969 |
thunderbird | Thunderbird | 10000 | 32 | 1.000 / 1.000 |
1from transformers import AutoModelForMaskedLM, AutoTokenizer
2
3sub = "bgl" # or "hdfs" / "thunderbird"
4tok = AutoTokenizer.from_pretrained("yukyung/LAnoBERT", subfolder=sub)
5model = AutoModelForMaskedLM.from_pretrained("yukyung/LAnoBERT", subfolder=sub)error_mean),
which is length-adaptive and balanced across datasets. See the code repository
for the full inference pipeline.1@article{lee2023lanobert,
2 title = {LAnoBERT: System log anomaly detection based on BERT masked language model},
3 author = {Lee, Yukyung and Kim, Jina and Kang, Pilsung},
4 journal = {Applied Soft Computing},
5 volume = {146},
6 pages = {110689},
7 year = {2023},
8 issn = {1568-4946},
9 doi = {10.1016/j.asoc.2023.110689}
10}