from local

This commit is contained in:
dohe0342 2023-01-04 03:10:57 +09:00
parent 0fc4769ce6
commit ed9a79bc86
2 changed files with 15 additions and 14 deletions

View File

@ -791,7 +791,8 @@ def main():
test_sets = [test_clean_sets, test_other_sets] test_sets = [test_clean_sets, test_other_sets]
test_dl = [test_clean_dl, test_other_dl] test_dl = [test_clean_dl, test_other_dl]
for test_set, test_dl in zip(test_sets, test_dl): for sets, dls in zip(test_sets, test_dl):
for test_set, test_dl in zip(sets, dls):
results_dict = decode_dataset( results_dict = decode_dataset(
dl=test_dl, dl=test_dl,
params=params, params=params,