Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
10K<n<100K
Language Creators:
crowdsourced
Annotations Creators:
crowdsourced
Source Datasets:
original
ArXiv:
License:
albertvillanova HF staff parkervg commited on
Commit
ed80520
1 Parent(s): 2962e06

Ignore missing JSON files with `FileNotFoundError` except (#7)

Browse files

- Ignore missing JSON files with `FileNotFoundError` except (4aa7931df35b55b23ba031ad5891f472ff3ed19b)


Co-authored-by: Parker Glenn <parkervg@users.noreply.huggingface.co>

Files changed (1) hide show
  1. hybrid_qa.py +1 -1
hybrid_qa.py CHANGED
@@ -144,7 +144,7 @@ class HybridQa(datasets.GeneratorBasedBuilder):
144
  table = json.load(f)
145
  with open(url_data_path, encoding="utf-8") as f:
146
  url_data = json.load(f)
147
- except KeyError: # Some JSON files were not properly added to the GitHub repo: filenames with ':', '"'
148
  continue
149
 
150
  table["header"] = [header[0] for header in table["header"]]
 
144
  table = json.load(f)
145
  with open(url_data_path, encoding="utf-8") as f:
146
  url_data = json.load(f)
147
+ except FileNotFoundError: # Some JSON files were not properly added to the GitHub repo: filenames with ':', '"'
148
  continue
149
 
150
  table["header"] = [header[0] for header in table["header"]]