rdiehlmartinez
commited on
Commit
•
085c4d0
1
Parent(s):
3f5de1d
removing unspecified keyword features
Browse files
BabyLM.py
CHANGED
@@ -16,14 +16,12 @@ class BabyLM(datasets.GeneratorBasedBuilder):
|
|
16 |
description="Small version of the dataset with 10M words",
|
17 |
version="1.0.0",
|
18 |
data_dir="10M",
|
19 |
-
features=["text"]
|
20 |
),
|
21 |
datasets.BuilderConfig(
|
22 |
name="strict",
|
23 |
description="Full version of the dataset with 100M words",
|
24 |
version="1.0.0",
|
25 |
data_dir="100M",
|
26 |
-
features=["text"]
|
27 |
)
|
28 |
]
|
29 |
|
|
|
16 |
description="Small version of the dataset with 10M words",
|
17 |
version="1.0.0",
|
18 |
data_dir="10M",
|
|
|
19 |
),
|
20 |
datasets.BuilderConfig(
|
21 |
name="strict",
|
22 |
description="Full version of the dataset with 100M words",
|
23 |
version="1.0.0",
|
24 |
data_dir="100M",
|
|
|
25 |
)
|
26 |
]
|
27 |
|