Skip to content

Commit

Permalink
correct evaluation list
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaskuestner committed Aug 20, 2020
1 parent 5c1a052 commit f06675f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evaluate.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def evaluate(config, datasets=None):
# Save loss
dictionary['evaluate_loss'] = list_loss_and_metrics[0]
# Save metrics
for i, item in enumerate(list_metrics):
for i, item in enumerate(lists_loss_and_metrics):
dictionary['evaluate_'+item]=list_loss_and_metrics[i+1]

with open(path_pickle+dataset + '.pickle', 'wb') as fp:
Expand Down

0 comments on commit f06675f

Please sign in to comment.