Commit 0375b05e authored by Kaiming He's avatar Kaiming He Committed by Facebook Github Bot

fix a bug of aspect ratio grouping

Summary: Fix a bug of aspect ratio grouping to support training batch size > 2.

Reviewed By: rbgirshick

Differential Revision: D8157964

fbshipit-source-id: 28eec6246cd6daf83aef30da245fe7bf340fbbc9
parent 63a9059c
......@@ -143,13 +143,15 @@ class RoIDataLoader(object):
vert = np.logical_not(horz)
horz_inds = np.where(horz)[0]
vert_inds = np.where(vert)[0]
inds = np.hstack(
(
np.random.permutation(horz_inds),
np.random.permutation(vert_inds)
)
)
inds = np.reshape(inds, (-1, 2))
horz_inds = np.random.permutation(horz_inds)
vert_inds = np.random.permutation(vert_inds)
mb = cfg.TRAIN.IMS_PER_BATCH
horz_inds = horz_inds[:(len(horz_inds) // mb) * mb]
vert_inds = vert_inds[:(len(vert_inds) // mb) * mb]
inds = np.hstack((horz_inds, vert_inds))
inds = np.reshape(inds, (-1, mb))
row_perm = np.random.permutation(np.arange(inds.shape[0]))
inds = np.reshape(inds[row_perm, :], (-1, ))
self._perm = inds
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment