You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
useage instructions and test_net.py code are misleading:
cfg.merge_from_file(args.config_file)
cfg.merge_from_list(args.opts)
cfg.freeze()
in practice , code in maskrcnn_bechmark/utils/checkpoint.py , loads the last existing checkpoint if present:
def load(self, f=None): if self.has_checkpoint():
# override argument with existing checkpoint
f = self.get_checkpoint_file()
if not f:
# no checkpoint could be found
self.logger.info("No checkpoint found. Initializing model from scratch")
return {}
self.logger.info("Loading checkpoint from {}".format(f))
:-)
Omer.
The text was updated successfully, but these errors were encountered:
hi ,
useage instructions and test_net.py code are misleading:
cfg.merge_from_file(args.config_file)
cfg.merge_from_list(args.opts)
cfg.freeze()
in practice , code in maskrcnn_bechmark/utils/checkpoint.py , loads the last existing checkpoint if present:
def load(self, f=None):
if self.has_checkpoint():
# override argument with existing checkpoint
f = self.get_checkpoint_file()
if not f:
# no checkpoint could be found
self.logger.info("No checkpoint found. Initializing model from scratch")
return {}
self.logger.info("Loading checkpoint from {}".format(f))
:-)
Omer.
The text was updated successfully, but these errors were encountered: