Skip to content

Commit

Permalink
Fix bug on loss functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Clément Pinard committed Apr 9, 2019
1 parent 389dbe1 commit 63af665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loss_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def one_scale(depth, explainability_mask):
total_loss += loss
warped_results.append(warped)
diff_results.append(diff)
return loss, warped_results, diff_results
return total_loss, warped_results, diff_results


def explainability_loss(mask):
Expand Down

0 comments on commit 63af665

Please sign in to comment.