Skip to content
Snippets Groups Projects
Unverified Commit 4cd3be89 authored by Shivam Khandelwal's avatar Shivam Khandelwal Committed by GitHub
Browse files

Merge pull request #3 from TE-StefanUhlich/fix_eval

Fix evaluation
parents 73dc1395 d370a878
No related branches found
Tags submission-new-strategy
No related merge requests found
......@@ -91,7 +91,7 @@ class MusicDemixingPredictor:
estimates = []
for instrument in instruments:
reference_file = join(self.test_data_path, music_name, instrument + ".wav")
estimate_file = self.get_music_file_location(music_name, "bass")
estimate_file = self.get_music_file_location(music_name, instrument)
reference, _ = sf.read(reference_file)
estimate, _ = sf.read(estimate_file)
references.append(reference)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment