cyrilzhang commited on
Commit
6a667c8
·
1 Parent(s): 54f7a2c

Update ace.py

Browse files
Files changed (1) hide show
  1. ace.py +2 -2
ace.py CHANGED
@@ -42,8 +42,8 @@ class MockupDataset(datasets.GeneratorBasedBuilder):
42
  def _info(self):
43
  features = datasets.Features(
44
  {
45
- "x": datasets.Value("null"),
46
- "y": datasets.Value("null")
47
  }
48
  )
49
 
 
42
  def _info(self):
43
  features = datasets.Features(
44
  {
45
+ "x": datasets.Value("list<item: int64>"),
46
+ "y": datasets.Value("list<item: int64>")
47
  }
48
  )
49