I observe _tranpose_and_gather_feat(..) as a major difference between _train(...) and _test(...). To illustrate my this point ("major difference"), I merge the corresponding
_train(...) and _test(...) in ExtremeNet/models/py_utils/exkp.py
into my version of def forward(...).
Possible to briefly explain the role of
_tranpose_and_gather_feat(..)
inmodels/py_utils/kp.py
? I have to thoroughly understand this in order to understand role ofexct_decode
in ExtremeNet/models/py_utils/kp_utils.py as well as the role of_decode
in CornerNet/models/py_utils/kp_utils.py?Here I @xingyizhou just in case.
Sorry about this bothering,
I observe
_tranpose_and_gather_feat(..)
as a major difference between_train(...)
and_test(...)
. To illustrate my this point ("major difference"), I merge the corresponding_train(...)
and_test(...)
in ExtremeNet/models/py_utils/exkp.py into my version ofdef forward(...)
.