Hieu Nguyen commited on
Commit
a143ebc
1 Parent(s): a117a45

Revert back to old features

Browse files
Files changed (1) hide show
  1. deep-research.py +3 -3
deep-research.py CHANGED
@@ -91,9 +91,9 @@ class NewDataset(datasets.GeneratorBasedBuilder):
91
  # if self.config.name == "train": # This is the name of the configuration selected in BUILDER_CONFIGS above
92
  features = datasets.Features(
93
  {
94
- "identification": datasets.Value("string"),
95
- "title_text": datasets.Value("string"),
96
- "context_text": datasets.Value("string"),
97
  "question": datasets.Value("string"),
98
  "answers": datasets.features.Sequence(
99
  {"text": datasets.Value("string"), "answer_start": datasets.Value("int32"),}
 
91
  # if self.config.name == "train": # This is the name of the configuration selected in BUILDER_CONFIGS above
92
  features = datasets.Features(
93
  {
94
+ "id": datasets.Value("string"),
95
+ "title": datasets.Value("string"),
96
+ "context": datasets.Value("string"),
97
  "question": datasets.Value("string"),
98
  "answers": datasets.features.Sequence(
99
  {"text": datasets.Value("string"), "answer_start": datasets.Value("int32"),}