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!
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!
Hi ! You can do
from datasets import Dataset
ds = Dataset.from_file("path/to/data.arrow")