[urgent]Can you reconstruct datasets using the cache file (.arrow file)?

Sure ! If you only have the .arrow file you can do

from datasets import Dataset 

dataset = Dataset.from_file(path_to_arrow_file)
3 Likes