Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
antofuller committed May 27, 2022
1 parent 980843f commit cf1d5e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorials/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ for epoch in range(epochs):

val_accs.append([correct_num, total_num])

val_accs = sum([x[0] for x in val_accs]) / sum([x[1] for x in val_accs])
val_accs = sum([x[0] for x in val_accs]) / sum([x[1] for x in val_accs]) # total correct divided by total images

if val_accs > record['val']:
record['val'] = val_accs
Expand Down

0 comments on commit cf1d5e4

Please sign in to comment.