You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great to have a continued_run=True keyword which can be used to continue a previous museval run, which was stopped before processing all songs (e.g., due to out-of-memory):
museval.eval_mus_dir(
dataset=mus, # instance of musdbestimates_dir=..., # path to estimate folderoutput_dir=..., # set a folder to write eval json filessubsets="Test",
parallel=True,
is_wav=False,
continued_run=True
)
museval should check whether the JSON folder already exists and - if there is already a JSON file - skip this song.
The text was updated successfully, but these errors were encountered:
maybe a overwrite flag would be simpler to understand, so that when overwrite=False, existing tracks are just skipped.
Also, we know that v4 needs way more memory than v3, so we might be better off fixing that as by introducing some memmap for the huge trackwise FFTs...
It would be great to have a
continued_run=True
keyword which can be used to continue a previousmuseval
run, which was stopped before processing all songs (e.g., due to out-of-memory):museval
should check whether the JSON folder already exists and - if there is already a JSON file - skip this song.The text was updated successfully, but these errors were encountered: