siammot/data/adapters/augmentation/video_augmentation.py [124:132]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            return video, target

        new_video = []
        new_target = []
        # Only 1 frame go through the motion augmentation,
        # the other unchanged
        idx = random.choice((0, 1))
        for i, (image, image_target) in enumerate(zip(video, target)):
            if i == idx:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



siammot/data/adapters/augmentation/video_augmentation.py [150:156]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            return video, target

        new_video = []
        new_target = []
        idx = random.choice((0, 1))
        for i, (image, image_target) in enumerate(zip(video, target)):
            if i == idx:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



