Skip to content

Commit a85d79c

Browse files
committed
change some code style
1 parent 1135488 commit a85d79c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benchmark/fluid/mnist.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ def run_benchmark(model, args):
184184
]
185185
) # The accuracy is the accumulation of batches, but not the current batch.
186186
accuracy.update(
187-
value=np.array(np.mean(outs[1])),
188-
weight=np.mean(np.array(outs[2])))
187+
value=np.array(np.mean(outs[1])),
188+
weight=np.mean(np.array(outs[2])))
189189
iters += 1
190190
num_samples += len(y_data)
191191
loss = np.mean(np.array(outs[0]))

0 commit comments

Comments
 (0)