DeepInstinct commited on
Commit
f29a697
·
verified ·
1 Parent(s): 185df47

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -5
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
- # Load the subset with DNS data
47
- ds_dns = load_dataset("DeepInstinct/DeepURLBench", "with_dns")
48
-
49
- # Load the subset without DNS data
50
- ds_no_dns = load_dataset("DeepInstinct/DeepURLBench", "without_dns")
 
 
 
 
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