Dataset loading issue in colab
I am facing the following error while loading this dataset. I tried clearing cache but it is not working. Here is the error output: NotImplementedError Traceback (most recent call last)
in <cell line: 0>()
2
3 # This can take a few minutes to load, so grab a coffee or tea while you wait!
----> 4 raw_datasets = load_dataset("kejian/codesearchnet-python-raw", cache_dir=None)
1 frames
/usr/local/lib/python3.11/dist-packages/datasets/builder.py in as_dataset(self, split, run_post_process, verification_mode, ignore_verifications, in_memory)
1171 is_local = not is_remote_filesystem(self._fs)
1172 if not is_local:
-> 1173 raise NotImplementedError(f"Loading a dataset cached in a {type(self._fs).name} is not supported.")
1174 if not os.path.exists(self._output_dir):
1175 raise FileNotFoundError(
NotImplementedError: Loading a dataset cached in a LocalFileSystem is not supported.