removed align_corners=True
Got this error in Pytorch 1.1.0: TypeError: grid_sample() got an unexpected keyword argument 'align_corners'
This commit is contained in:
parent
9a6f6678b1
commit
53509eab01
|
@ -30,7 +30,7 @@ class TPS_SpatialTransformerNetwork(nn.Module):
|
||||||
batch_C_prime = self.LocalizationNetwork(batch_I) # batch_size x K x 2
|
batch_C_prime = self.LocalizationNetwork(batch_I) # batch_size x K x 2
|
||||||
build_P_prime = self.GridGenerator.build_P_prime(batch_C_prime) # batch_size x n (= I_r_width x I_r_height) x 2
|
build_P_prime = self.GridGenerator.build_P_prime(batch_C_prime) # batch_size x n (= I_r_width x I_r_height) x 2
|
||||||
build_P_prime_reshape = build_P_prime.reshape([build_P_prime.size(0), self.I_r_size[0], self.I_r_size[1], 2])
|
build_P_prime_reshape = build_P_prime.reshape([build_P_prime.size(0), self.I_r_size[0], self.I_r_size[1], 2])
|
||||||
batch_I_r = F.grid_sample(batch_I, build_P_prime_reshape, padding_mode='border', align_corners=True)
|
batch_I_r = F.grid_sample(batch_I, build_P_prime_reshape, padding_mode='border')
|
||||||
|
|
||||||
return batch_I_r
|
return batch_I_r
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue