SOREL-20M: A Large Scale Benchmark Dataset for Malicious PE Detection
Paper • 2012.07634 • Published
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
This is a subset of the SOREL-20M dataset containing malware detection features and labels.
The dataset contains the following columns:
sha256: SHA256 hash of the original filelabel: Binary label (0=benign, 1=malicious)feature_0 to feature_2350: EMBER v2 feature vectorThe dataset contains 2351-dimensional feature vectors extracted using the EMBER v2 feature extraction process.
from datasets import load_dataset
import pandas as pd
# Load from parquet
df = pd.read_parquet("train.parquet")
# Or load as HuggingFace dataset
dataset = load_dataset("path/to/dataset")
If you use this dataset, please cite the original SOREL-20M paper:
@misc{harang2020sorel20m,
title={SOREL-20M: A Large Scale Benchmark Dataset for Malicious PE Detection},
author={Richard Harang and Ethan M. Rudd},
year={2020},
eprint={2012.07634},
archivePrefix={arXiv},
primaryClass={cs.CR}
}
Please refer to the original SOREL-20M dataset terms of use.