Load Dataset from arrow file

I couldn’t find if there is any supported method to build a huggingface dataset object from an arrow file… Does anyone know if it is possible?

Thank you very much in advance… I am stuck on it!

2 Likes

Hi ! You can do

from datasets import Dataset

ds = Dataset.from_file("path/to/data.arrow")
5 Likes