Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10M - 100M
Tags:
cybersecurity
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -43,11 +43,15 @@ You can load the dataset using the Hugging Face `datasets` library:
|
|
| 43 |
```python
|
| 44 |
from datasets import load_dataset
|
| 45 |
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
```
|
| 52 |
|
| 53 |
## License
|
|
|
|
| 43 |
```python
|
| 44 |
from datasets import load_dataset
|
| 45 |
|
| 46 |
+
ds_with_dns = load_dataset(
|
| 47 |
+
"DeepInstinct/DeepURLBench",
|
| 48 |
+
data_files="urls_with_dns.parquet"
|
| 49 |
+
)
|
| 50 |
+
|
| 51 |
+
ds_without_dns = load_dataset(
|
| 52 |
+
"DeepInstinct/DeepURLBench",
|
| 53 |
+
data_files="urls_without_dns.parquet"
|
| 54 |
+
)
|
| 55 |
```
|
| 56 |
|
| 57 |
## License
|