Skip to content

Commit a2706b8

Browse files
Remove "for training" in get_roidb
get_roidb will be indirectly called by test_net.py. This PR removes "for training" because it's misleading.
1 parent 56aff1c commit a2706b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎lib/roi_data_layer/roidb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def get_training_roidb(imdb):
120120

121121
def get_roidb(imdb_name):
122122
imdb = get_imdb(imdb_name)
123-
print('Loaded dataset `{:s}` for training'.format(imdb.name))
123+
print('Loaded dataset `{:s}`'.format(imdb.name))
124124
imdb.set_proposal_method(cfg.TRAIN.PROPOSAL_METHOD)
125125
print('Set proposal method: {:s}'.format(cfg.TRAIN.PROPOSAL_METHOD))
126126
roidb = get_training_roidb(imdb)

0 commit comments

Comments
 (0)