I'm facing a NotImplementedError: Loading a dataset cached in a LocalFileSystem is not supported error in Google Colab when loading the dataset 'Osondu/reddit_autism_dataset'. I've tried restarting the runtime and setting a custom cache_dir, but the issue

1 Like

Based on the error message, it is likely that there is a version mismatch with fsspec.

!pip install -U datasets
!pip install fsspec==2023.9.2

Brooo…was just facing the same issue with a different dataset. Thanks a million.

1 Like