Skip to content

Commit

Permalink
rm redundant print
Browse files Browse the repository at this point in the history
  • Loading branch information
yenchenlin committed Apr 18, 2020
1 parent 35a2e71 commit 356125d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_nerf.py
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ def train():



if i%args.i_print==0 or i < 10:
if i%args.i_print==0:
tqdm.write(f"[TRAIN] Iter: {i} Loss: {loss.item()} PSNR: {psnr.item()}")
"""
print(expname, i, psnr.numpy(), loss.numpy(), global_step.numpy())
Expand Down

0 comments on commit 356125d

Please sign in to comment.