Dataset Viewer issue
The dataset viewer is not working.
Error details:
Error code: StreamingRowsError
Exception: FileNotFoundError
Message: https://storage.googleapis.com/illuin/fquad/train.json.zip
Traceback: Traceback (most recent call last):
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/implementations/http.py", line 411, in _info
await _file_info(
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/implementations/http.py", line 827, in _file_info
r.raise_for_status()
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/aiohttp/client_reqrep.py", line 1005, in raise_for_status
raise ClientResponseError(
aiohttp.client_exceptions.ClientResponseError: 403, message='Forbidden', url=URL('https://storage.googleapis.com/illuin/fquad/train.json.zip')
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/workers/datasets_based/src/datasets_based/workers/first_rows.py", line 485, in compute_first_rows_response
rows = get_rows(
File "/src/workers/datasets_based/src/datasets_based/workers/first_rows.py", line 120, in decorator
return func(*args, **kwargs)
File "/src/workers/datasets_based/src/datasets_based/workers/first_rows.py", line 176, in get_rows
rows_plus_one = list(itertools.islice(ds, rows_max_number + 1))
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 917, in __iter__
for key, example in ex_iterable:
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 113, in __iter__
yield from self.generate_examples_fn(**self.kwargs)
File "/tmp/modules-cache/datasets_modules/datasets/fquad/505897c64c809e79a9910c91632481daec6fc5f55429ddd5ef367baf5f76651d/fquad.py", line 98, in _generate_examples
with open(filepath, encoding="utf-8") as f:
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/datasets/streaming.py", line 70, in wrapper
return function(*args, use_auth_token=use_auth_token, **kwargs)
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/datasets/download/streaming_download_manager.py", line 495, in xopen
file_obj = fsspec.open(file, mode=mode, *args, **kwargs).open()
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/core.py", line 419, in open
return open_files(
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/core.py", line 272, in open_files
fs, fs_token, paths = get_fs_token_paths(
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/core.py", line 586, in get_fs_token_paths
fs = filesystem(protocol, **inkwargs)
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/registry.py", line 252, in filesystem
return cls(**storage_options)
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/spec.py", line 76, in __call__
obj = super().__call__(*args, **kwargs)
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/implementations/zip.py", line 53, in __init__
self.fo = fo.__enter__() # the whole instance is a context
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/core.py", line 102, in __enter__
f = self.fs.open(self.path, mode=mode)
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/spec.py", line 1135, in open
f = self._open(
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/implementations/http.py", line 350, in _open
size = size or self.info(path, **kwargs)["size"]
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/asyn.py", line 114, in wrapper
return sync(self.loop, func, *args, **kwargs)
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/asyn.py", line 99, in sync
raise return_result
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/asyn.py", line 54, in _runner
result[0] = await coro
File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/fsspec/implementations/http.py", line 424, in _info
raise FileNotFoundError(url) from exc
FileNotFoundError: https://storage.googleapis.com/illuin/fquad/train.json.zip
Thanks for reporting @abdouaziiz .
Apparently, the original data files are no longer accessible. And from the original data website, it seems the authors require the users to agree to their terms and conditions before granting access to the data.
We are contacting the authors to see if we can find an agreed solution.
The authors prefer to continue providing access to their dataset through their website, after having agreed to their terms and conditions.
Therefore, this loading script should be adapted, so that it needs the data being previously downloaded to a local directory instead of trying to download it automatically.
Hello @albertvillanova , Thanks for the feedback and efforts !
I have updated the loading script with the instructions for manual data download.
See: #5.
It's working perfectly ! Thanks a gain
Thanks
@albertvillanova
. The dataset viewer is now disabled and shows an explicit message.