Skip to content

Commit 8c4bb74

Browse files
ashwinbxzhewei
authored andcommitted
Change debug -> info, revert changes from D6826820
Reviewed By: rbgirshick Differential Revision: D9133758 fbshipit-source-id: a698a637b294b7f2aef4c181cb47505187be3935
1 parent 1ad1674 commit 8c4bb74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

detectron/utils/net.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def initialize_gpu_from_weights_file(model, weights_file, gpu_id=0):
9191
dst_name = core.ScopedName(unscoped_param_name)
9292
has_momentum = src_name + '_momentum' in src_blobs
9393
has_momentum_str = ' [+ momentum]' if has_momentum else ''
94-
logger.debug(
94+
logger.info(
9595
'{:s}{:} loaded from weights file into {:s}: {}'.format(
9696
src_name, has_momentum_str, dst_name, src_blobs[src_name]
9797
.shape
@@ -129,7 +129,7 @@ def initialize_gpu_from_weights_file(model, weights_file, gpu_id=0):
129129
with c2_utils.CpuScope():
130130
workspace.FeedBlob(
131131
'__preserve__/{:s}'.format(src_name), src_blobs[src_name])
132-
logger.debug(
132+
logger.info(
133133
'{:s} preserved in workspace (unused)'.format(src_name))
134134

135135

0 commit comments

Comments
 (0)