956268db11e19b28ce4e9b75a38862694f397090,chainercv/links/model/fpn/head.py,Head,__call__,#Head#Any#Any#Any#,40
Before Change
self.xp.empty((0, self._n_class), dtype=np.float32)))
continue
roi_iltrb = self.xp.hstack(
(roi_indices[l][:, None], rois[l][:, [1, 0, 3, 2]])) \
.astype(np.float32)
h = roi_align_2d(
h, roi_iltrb,
After Change
self.xp.empty((0, self._n_class, 4), dtype=np.float32))
confs = chainer.Variable(
self.xp.empty((0, self._n_class), dtype=np.float32))
return locs, confs
h = F.concat(hs, axis=0)
h = F.reshape(h, (h.shape[0], -1))

In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: chainer/chainercv
Commit Name: 956268db11e19b28ce4e9b75a38862694f397090
Time: 2018-12-11
Author: Hakuyume@users.noreply.github.com
File Name: chainercv/links/model/fpn/head.py
Class Name: Head
Method Name: __call__
Project Name: chainer/chainercv
Commit Name: 10c43c7c08cdce3583e68834133a89eb0dbfcf78
Time: 2017-06-19
Author: Hakuyume@users.noreply.github.com
File Name: chainercv/links/model/ssd/multibox_coder.py
Class Name: MultiboxCoder
Method Name: encode
Project Name: chainer/chainercv
Commit Name: 10c43c7c08cdce3583e68834133a89eb0dbfcf78
Time: 2017-06-19
Author: Hakuyume@users.noreply.github.com
File Name: chainercv/links/model/ssd/multibox_coder.py
Class Name: MultiboxCoder
Method Name: decode