thomasyu888 commited on
Commit
4c55267
·
1 Parent(s): 2ccbc68

Update testdataset.py

Browse files
Files changed (1) hide show
  1. testdataset.py +6 -1
testdataset.py CHANGED
@@ -95,7 +95,12 @@ class TestDataset(datasets.GeneratorBasedBuilder):
95
  print(self.config)
96
  features = datasets.Features(
97
  {
98
- "id": datasets.Value("string")
 
 
 
 
 
99
  }
100
  )
101
 
 
95
  print(self.config)
96
  features = datasets.Features(
97
  {
98
+ "id": datasets.Value("string"),
99
+ "package_name": datasets.Value("string"),
100
+ "review": datasets.Value("string"),
101
+ "date": datasets.Value("string"),
102
+ "star": datasets.Value("string"),
103
+ "version_id": datasets.Value("string")
104
  }
105
  )
106