How to load this simple audio data set and use dataset.map without memory issues?

I guess we have to add it to the documention :stuck_out_tongue:

Basically a Dataset os just a wrapper of an Arrow table. It can be a InMemoryTable, a MemoryMappedTable (i.e. from local files), or a combination of both as a ConcatenationTable. You can check the Arrow table with ds.data

2 Likes