Dataset Viewer issue for python configuration: NotImplementedError: TAR archives

#4
by albertvillanova HF staff - opened

The dataset viewer is not working.

Error details:

Error code:   StreamingRowsError
Exception:    NotImplementedError
Message:      Extraction protocol for TAR archives like 'http://files.srl.inf.ethz.ch/data/py150_files.tar.gz' is not implemented in streaming mode. Please use `dl_manager.iter_archive` instead.

Example usage:

    url = dl_manager.download(url)
    tar_archive_iterator = dl_manager.iter_archive(url)

    for filename, file in tar_archive_iterator:
        ...
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/utils.py", line 363, in get_rows_or_raise
                  return get_rows(
                File "/src/services/worker/src/worker/utils.py", line 305, in decorator
                  return func(*args, **kwargs)
                File "/src/services/worker/src/worker/utils.py", line 326, in get_rows
                  ds = load_dataset(
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/load.py", line 1790, in load_dataset
                  return builder_instance.as_streaming_dataset(split=split)
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 1260, in as_streaming_dataset
                  splits_generators = {sg.name: sg for sg in self._split_generators(dl_manager)}
                File "/tmp/modules-cache/datasets_modules/datasets/code_x_glue_cc_code_completion_token/a2ce9fb534c8b96df6fb48e1ee84bc69f136001cce433173b8e9af5136796c32/code_x_glue_cc_code_completion_token.py", line 227, in _split_generators
                  return self.child._split_generators(dl_manager=dl_manager)
                File "/tmp/modules-cache/datasets_modules/datasets/code_x_glue_cc_code_completion_token/a2ce9fb534c8b96df6fb48e1ee84bc69f136001cce433173b8e9af5136796c32/common.py", line 50, in _split_generators
                  downloaded_files[k] = dl_manager.download_and_extract(v)
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/download/streaming_download_manager.py", line 1087, in download_and_extract
                  return self.extract(self.download(url_or_urls))
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/download/streaming_download_manager.py", line 1039, in extract
                  urlpaths = map_nested(self._extract, url_or_urls, map_tuple=True)
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/utils/py_utils.py", line 443, in map_nested
                  mapped = [
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/utils/py_utils.py", line 444, in <listcomp>
                  _single_map_nested((function, obj, types, None, True, None))
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/utils/py_utils.py", line 346, in _single_map_nested
                  return function(data_struct)
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/download/streaming_download_manager.py", line 1049, in _extract
                  raise NotImplementedError(
              NotImplementedError: Extraction protocol for TAR archives like 'http://files.srl.inf.ethz.ch/data/py150_files.tar.gz' is not implemented in streaming mode. Please use `dl_manager.iter_archive` instead.
              
              Example usage:
              
                  url = dl_manager.download(url)
                  tar_archive_iterator = dl_manager.iter_archive(url)
              
                  for filename, file in tar_archive_iterator:
                      ...

cc @albertvillanova

Fixed by #5:

Screenshot from 2023-06-12 10-48-30.png

albertvillanova changed discussion status to closed

Sign up or log in to comment