Datasets:
fix bug for load valid split
Browse files
README.md
CHANGED
@@ -96,7 +96,7 @@ or you can use HuggingFace style:
|
|
96 |
from datasets import load_dataset
|
97 |
|
98 |
train_df = load_dataset('sagteam/author_profiling', split='train')
|
99 |
-
valid_df = load_dataset('sagteam/author_profiling', split='
|
100 |
test_df = load_dataset('sagteam/author_profiling', split='test')
|
101 |
```
|
102 |
|
|
|
96 |
from datasets import load_dataset
|
97 |
|
98 |
train_df = load_dataset('sagteam/author_profiling', split='train')
|
99 |
+
valid_df = load_dataset('sagteam/author_profiling', split='validation')
|
100 |
test_df = load_dataset('sagteam/author_profiling', split='test')
|
101 |
```
|
102 |
|