Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
M-R-Schaefer committed Jan 9, 2024
1 parent 9d712f4 commit 76bdd87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apax/train/loss.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def force_angle_exponential_weight(
return (1.0 - dotp) * jnp.exp(-F_0_norm) / divisor


def stress_tril(label, prediction, divisor= 1.0):
def stress_tril(label, prediction, divisor=1.0):
idxs = jnp.tril_indices(3)
label_tril = label[:, idxs[0], idxs[1]]
prediction_tril = prediction[:, idxs[0], idxs[1]]
Expand Down

0 comments on commit 76bdd87

Please sign in to comment.