-
Notifications
You must be signed in to change notification settings - Fork 19
Description
In the contacthead.py, the three decoders have different input dimension.
self.vertex_contact_decoder = PointNetDecodeModule(self._concat_feat_dim, 1)
self.contact_region_decoder = PointNetDecodeModule(self._concat_feat_dim + 1, self.n_region)
self.anchor_elasti_decoder = PointNetDecodeModule(self._concat_feat_dim + 17, self.n_anchor)
I am wondering if this part is used to predict selected anchor points within each subregion.
The classification of subregions is obtained by contact_region_decoder and then the anchor points are predicted by anchor_elasti_decoder, is it right ?
I am a little bit confused about it, because according to the paper, Anchor Elasticity (AE) represents the elasticities of the attractive springs. But in the code, the output of anchor_elasti_decoder has no relation to the elasticity parameter, I'm wondering if there's some part I've missed.
Sorry for any trouble caused and thanks for your help!