a7d92f7020dfe8854430ef13ed2923b2606a6262,torchsample/transforms/affine_transforms.py,Rotate,__call__,#Rotate#,280
Before Change
self.lazy = lazy
def __call__(self, x, y=None):
x = x.contiguous()
theta = math.pi / 180 * self.value
rotation_matrix = th.FloatTensor([[math.cos(theta), -math.sin(theta), 0],
[math.sin(theta), math.cos(theta), 0],
[0, 0, 1]])
After Change
mode=interp[idx],
center=True)
outputs.append(input_tf)
return outputs if idx > 1 else outputs[0]
class RandomTranslate(object):

In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: ncullen93/torchsample
Commit Name: a7d92f7020dfe8854430ef13ed2923b2606a6262
Time: 2017-05-11
Author: ncullen.th@dartmouth.edu
File Name: torchsample/transforms/affine_transforms.py
Class Name: Rotate
Method Name: __call__
Project Name: ncullen93/torchsample
Commit Name: 943753c968fe7c0cbafc6e44d60f1b28b42e997b
Time: 2017-05-03
Author: ncullen.th@dartmouth.edu
File Name: torchsample/utils.py
Class Name:
Method Name: th_affine2d
Project Name: Alexander-H-Liu/End-to-end-ASR-Pytorch
Commit Name: 5fc0afb315746846e099897eb7ecdfa2397201cf
Time: 2019-08-15
Author: alexliu36@gmail.com
File Name: src/solver.py
Class Name: Trainer
Method Name: exec