Datasets:
ealvaradob
commited on
Commit
•
55caf9a
1
Parent(s):
9bcdfd7
Update README.md
Browse files
README.md
CHANGED
@@ -104,13 +104,13 @@ You can easily use any of these datasets by specifying its name in the following
|
|
104 |
```python
|
105 |
from datasets import load_dataset
|
106 |
|
107 |
-
dataset = load_dataset("ealvaradob/phishing-
|
108 |
```
|
109 |
|
110 |
For example, if you want to load combined reduced dataset, you can use:
|
111 |
|
112 |
```python
|
113 |
-
dataset = load_dataset("ealvaradob/phishing-
|
114 |
```
|
115 |
|
116 |
Due to the implementation of the datasets library, when executing these codes you will see that only a training split is generated.
|
|
|
104 |
```python
|
105 |
from datasets import load_dataset
|
106 |
|
107 |
+
dataset = load_dataset("ealvaradob/phishing-dataset", "<desired_dataset>", trust_remote_code=True)
|
108 |
```
|
109 |
|
110 |
For example, if you want to load combined reduced dataset, you can use:
|
111 |
|
112 |
```python
|
113 |
+
dataset = load_dataset("ealvaradob/phishing-dataset", "combined_reduced", trust_remote_code=True)
|
114 |
```
|
115 |
|
116 |
Due to the implementation of the datasets library, when executing these codes you will see that only a training split is generated.
|