Skip to content

Commit 0a2043c

Browse files
committed
fix
1 parent 7820ac6 commit 0a2043c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algoperf/workloads/mnist/mnist_jax/workload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,4 @@ def _normalize_eval_metrics(
135135
self, num_examples: int, total_metrics: Dict[str,
136136
Any]) -> Dict[str, float]:
137137
"""Normalize eval metrics."""
138-
return jax.tree.map(lambda: float(x.item() / num_examples), total_metrics)
138+
return jax.tree.map(lambda x: float(x.item() / num_examples), total_metrics)

0 commit comments

Comments
 (0)