cybersectony
commited on
Commit
•
b107f74
1
Parent(s):
510edff
Update README.md
Browse files
README.md
CHANGED
@@ -27,3 +27,35 @@ configs:
|
|
27 |
- split: test
|
28 |
path: data/test-*
|
29 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
- split: test
|
28 |
path: data/test-*
|
29 |
---
|
30 |
+
|
31 |
+
# PhishingEmailDetectionv2.0 Dataset
|
32 |
+
|
33 |
+
A comprehensive dataset combining email messages and URLs for phishing detection.
|
34 |
+
|
35 |
+
## Dataset Overview
|
36 |
+
[![Downloads](https://img.shields.io/badge/downloads-statistics-blue)](https://huggingface.co/datasets/cybersectony/PhishingEmailDetectionv2.0/statistics)
|
37 |
+
[![License](https://img.shields.io/badge/License-Apache%202.0-green.svg)](LICENSE)
|
38 |
+
|
39 |
+
### Quick Facts
|
40 |
+
- **Task Type**: Multi-class Classification
|
41 |
+
- **Languages**: English
|
42 |
+
- **Total Samples**: 200,000 entries
|
43 |
+
- **Size Split**:
|
44 |
+
- Email samples: 22,644
|
45 |
+
- URL samples: 177,356
|
46 |
+
- **Label Distribution**: Four classes (0, 1, 2, 3)
|
47 |
+
- **Format**: Two columns - `content` and `labels`
|
48 |
+
|
49 |
+
## Dataset Structure
|
50 |
+
|
51 |
+
### Features
|
52 |
+
```python
|
53 |
+
{
|
54 |
+
'content': Value(dtype='string', description='The text content - either email body or URL'),
|
55 |
+
'labels': ClassLabel(num_classes=4, names=[
|
56 |
+
'legitimate_email', # 0
|
57 |
+
'phishing_email', # 1
|
58 |
+
'legitimate_url', # 2
|
59 |
+
'phishing_url' # 3
|
60 |
+
], description='Multi-class label for content classification')
|
61 |
+
}
|