DPM 実験用ユーティリティ関数

10import torch.utils.data

定数を集めてフィーチャマップの形状に形状を変える

13def gather(consts: torch.Tensor, t: torch.Tensor):
15    c = consts.gather(-1, t)
16    return c.reshape(-1, 1, 1, 1)