hi @kefirski !
It’s not possible to provide a path to locally downloaded files now unfortunately.
Instead, you can run load_dataset("super_glue", "config_name")
once when you have internet, it will download all the files, extract them, prepare the dataset and cache it. Next time you run load_dataset("super_glue", "config_name")
it will be loaded from cached arrow files, you won’t need internet connection. Note that you need to do it for each config you want to use.