Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
MaybeShewill-CV committed Jul 9, 2020
1 parent b877737 commit 20ce288
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lanenet_model/lanenet_back_end.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ def compute_loss(self, binary_seg_logits, binary_label,
)
elif self._binary_loss_type == 'focal':
binary_segmenatation_loss = self._multi_category_focal_loss(
onehot_labels=binary_label_onehot,
logits=binary_seg_logits,
classes_weights=inverse_weights
onehot_labels=binary_label_onehot,
logits=binary_seg_logits,
classes_weights=inverse_weights
)
else:
raise NotImplementedError
Expand Down

0 comments on commit 20ce288

Please sign in to comment.