Commit ·
1683438
1
Parent(s): 007ed2b
Update ace.py
Browse files
ace.py
CHANGED
|
@@ -55,8 +55,8 @@ class MockupDataset(datasets.GeneratorBasedBuilder):
|
|
| 55 |
def _info(self):
|
| 56 |
features = datasets.Features(
|
| 57 |
{
|
| 58 |
-
"x": datasets.Value("
|
| 59 |
-
"y": datasets.Value("
|
| 60 |
}
|
| 61 |
)
|
| 62 |
|
|
|
|
| 55 |
def _info(self):
|
| 56 |
features = datasets.Features(
|
| 57 |
{
|
| 58 |
+
"x": datasets.Sequence(datasets.Value("int32"), length=-1),
|
| 59 |
+
"y": datasets.Sequence(datasets.Value("int32"), length=-1)
|
| 60 |
}
|
| 61 |
)
|
| 62 |
|