Skip to content
Snippets Groups Projects
Commit 871386bd authored by Jan Ebert's avatar Jan Ebert
Browse files

Fix train step logging

parent 20148fbf
Branches
No related tags found
No related merge requests found
......@@ -274,7 +274,7 @@ def main():
if step % log_step_interval == 0:
print0(
f'[{epoch}/{epochs}; {step}] '
f'[{epoch}/{epochs}; {step - 1}] '
f'loss: {loss:.5f}'
)
......
......@@ -326,7 +326,7 @@ def main():
if step % log_step_interval == 0:
print0(
f'[{epoch}/{epochs}; {step}] '
f'[{epoch}/{epochs}; {step - 1}] '
f'loss: {loss:.5f}'
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment