ee602b6f68f0bdd19f449a86955697f8f0a2d54c,gluoncv/data/transforms/video.py,VideoNormalize,forward,#VideoNormalize#Any#,69
Before Change
num_images = int(c / 3)
clip_mean = self.mean * num_images
clip_std = self.std * num_images
clip_mean = nd.array(np.asarray(clip_mean).reshape((c, 1, 1)))
clip_std = nd.array(np.asarray(clip_std).reshape((c, 1, 1)))
return (clips - clip_mean) / clip_std
After Change
def forward(self, clips):
new_clips = []
for cur_img in clips:
new_clips.append((cur_img - self.mean) / self.std)
return new_clips
class VideoRandomHorizontalFlip(Block):
Randomly flip the images left to right with a probability.

In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: dmlc/gluon-cv
Commit Name: ee602b6f68f0bdd19f449a86955697f8f0a2d54c
Time: 2019-09-21
Author: yizhu59@gmail.com
File Name: gluoncv/data/transforms/video.py
Class Name: VideoNormalize
Method Name: forward
Project Name: deepmipt/DeepPavlov
Commit Name: c672738b39c8f739551da0d88991a2fedfba3e14
Time: 2018-10-04
Author: puleon@mail.ru
File Name: deeppavlov/models/ranking/metrics.py
Class Name:
Method Name: rank_response
Project Name: chainer/chainercv
Commit Name: 7d96731b9a50e5455a1e31f676508af42801b7ae
Time: 2019-01-23
Author: 69guitar1015@gmail.com
File Name: chainercv/links/model/deeplab/deeplab_v3_plus.py
Class Name: DeepLabV3plus
Method Name: predict