我们从Python开源项目中,提取了以下4个代码示例,用于说明如何使用torch.nn.InstanceNorm1d()。
def test_InstanceNorm1d(self): b = random.randint(3, 5) c = random.randint(1, 5) d = random.randint(2, 5) input = torch.Tensor(b, c, d).uniform_() self._test_InstanceNorm(nn.InstanceNorm1d, input)