bytedance / music_source_separation

Other
1.26k stars 194 forks source link

wrong checkpoint file size in __main__.py #37

Open IgnacioIrigaray opened 2 years ago

IgnacioIrigaray commented 2 years ago

When extracting the accompaniment and error in the file is reported. The file size downloaded don't match with the informed.

The problem is in the line 127

assert os.path.getsize(checkpoint_path) == 414046363, error_message

and i think that should be:

assert os.path.getsize(checkpoint_path) == 414036369, error_message
matthewkleinmann commented 2 years ago

I ran into the same thing today, and I just changed it. I have it running now. I have slow iron and no GPU so it is going to be a while. Fingers crossed it works. This is a very cool project.

rainfall007 commented 2 years ago

same problem,same solution:) it works!