We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7820ac6 commit 0a2043cCopy full SHA for 0a2043c
algoperf/workloads/mnist/mnist_jax/workload.py
@@ -135,4 +135,4 @@ def _normalize_eval_metrics(
135
self, num_examples: int, total_metrics: Dict[str,
136
Any]) -> Dict[str, float]:
137
"""Normalize eval metrics."""
138
- return jax.tree.map(lambda: float(x.item() / num_examples), total_metrics)
+ return jax.tree.map(lambda x: float(x.item() / num_examples), total_metrics)
0 commit comments