Vincent Lostanlen
Vincent Lostanlen
To summarize, I could see three sorts of use case for scaper v1.x with x>0 (A) "Zero to strong". With a constraint satisfaction problem (B) "Weak to strong". WIth a...
I am currently exploring the possibility of enabling git lfs (large file storage) in mirdata. Here's my fork: https://github.com/lostanlen/lfs-mirdata here’s our breakdown of memory usage per file type for the...
I created an `lfs` branch on `mirdata`: https://github.com/mir-dataset-loaders/mirdata/tree/lfs Note that master and lfs have entirely different commit histories, so it will not be possible to make a PR for this....
TinySOL was missing from the list. I requested to add it. https://github.com/ismir/mir-datasets/pull/25 DALI is also an open PR: https://github.com/ismir/mir-datasets/pull/23
yes, i would be in favor of that. at the moment, faroit and ejhumphrey are the only contributors, and there have been no commits since November 15th, 2019.
DALI and Tinysol will be in mir-datasets once https://github.com/ismir/mir-datasets/pull/27 get merged
I started looking into this today, and ... with the current way that mirdata is organized, it's not possible. At the moment, each mirdata module automatically loads its index during...
> That's totally feasible - we already do this for the "LargeData" object - we could tread the indexes the same. Independently of this issue, I think we should do...
brilliant! that's very good. i thought it was just for caching. i understand better now. Then, do you know what is the bottleneck of import time, if not loading indexes?...
Update: searching datasets by property is now doable, and very fast. Here's my code: ``` import importlib def search(key): match = [] for submodule_str in mirdata.__all__: module_str = "mirdata." +...