Args: aug_lists (list): list of augmentors. The augmentors are assumed to not change the shape of images.
(self, aug_lists)
| 73 | """ |
| 74 | |
| 75 | def __init__(self, aug_lists): |
| 76 | """ |
| 77 | Args: |
| 78 | aug_lists (list): list of augmentors. |
| 79 | The augmentors are assumed to not change the shape of images. |
| 80 | """ |
| 81 | self._init(locals()) |
| 82 | super(RandomOrderAug, self).__init__() |
| 83 | |
| 84 | def reset_state(self): |
| 85 | super(RandomOrderAug, self).reset_state() |