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")
4 Likes