mirror of
https://github.com/google-deepmind/deepmind-research.git
synced 2026-05-27 18:25:49 +08:00
Add checkpoints from the ablation study.
PiperOrigin-RevId: 328023346
This commit is contained in:
committed by
Diego de Las Casas
parent
22c3daff19
commit
8457046b2c
@@ -106,8 +106,8 @@ class Transporter(snt.AbstractModule):
|
||||
num_keypoints = image_a_keypoints["heatmaps"].shape[-1]
|
||||
transported_features = image_a_features
|
||||
for k in range(num_keypoints):
|
||||
mask_a = image_a_keypoints["heatmaps"][Ellipsis, k, None]
|
||||
mask_b = image_b_keypoints["heatmaps"][Ellipsis, k, None]
|
||||
mask_a = image_a_keypoints["heatmaps"][..., k, None]
|
||||
mask_b = image_b_keypoints["heatmaps"][..., k, None]
|
||||
|
||||
# suppress features from image a, around both keypoint locations.
|
||||
transported_features = (
|
||||
|
||||
Reference in New Issue
Block a user