Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanklut committed Dec 14, 2023
1 parent a670551 commit 6ad255c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def __init__(self, cfg):
if not cfg.TEST.WEIGHTS:
raise FileNotFoundError("Cannot do inference without weights. Specify a checkpoint file to --opts TEST.WEIGHTS")

print(checkpointer.load(cfg.TEST.WEIGHTS))
checkpointer.load(cfg.TEST.WEIGHTS)

if cfg.INPUT.RESIZE_MODE == "none":
self.aug = ResizeScaling(scale=1) # HACK percentage of 1 is no scaling
Expand Down

0 comments on commit 6ad255c

Please sign in to comment.