Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10M - 100M
Tags:
cybersecurity
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -35,6 +35,14 @@ Contains only the core metadata:
|
|
| 35 |
- `url`: The URL being analyzed.
|
| 36 |
- `first_seen`: The timestamp when the URL was first observed.
|
| 37 |
- `label`: The classification label (`malware`, `phishing`, or `benign`).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
|
| 39 |
## How to Load
|
| 40 |
|
|
@@ -54,6 +62,7 @@ ds_without_dns = load_dataset(
|
|
| 54 |
)
|
| 55 |
```
|
| 56 |
|
|
|
|
| 57 |
## License
|
| 58 |
|
| 59 |
This dataset is available under the CC BY-NC 4.0 License.
|
|
|
|
| 35 |
- `url`: The URL being analyzed.
|
| 36 |
- `first_seen`: The timestamp when the URL was first observed.
|
| 37 |
- `label`: The classification label (`malware`, `phishing`, or `benign`).
|
| 38 |
+
## Important Notes on Splitting
|
| 39 |
+
|
| 40 |
+
Although Hugging Face shows each loaded file under the `"train"` split by default, this dataset **does not include predefined train/validation/test splits**.
|
| 41 |
+
|
| 42 |
+
Instead, the intended splitting strategy is described in detail in our [paper](#citation). In brief, we recommend splitting the data **chronologically by the `first_seen` field**, so that evaluation is performed on newer, unseen URLs — simulating real-world deployment.
|
| 43 |
+
|
| 44 |
+
Each subset (`urls_with_dns` and `urls_without_dns`) is designed to be loaded independently, as shown below.
|
| 45 |
+
|
| 46 |
|
| 47 |
## How to Load
|
| 48 |
|
|
|
|
| 62 |
)
|
| 63 |
```
|
| 64 |
|
| 65 |
+
|
| 66 |
## License
|
| 67 |
|
| 68 |
This dataset is available under the CC BY-NC 4.0 License.
|