fast-reid/fastreid/data/transforms/__init__.py

12 lines
246 B
Python
Raw Normal View History

2020-02-10 07:38:56 +08:00
# encoding: utf-8
"""
@author: sherlock
@contact: sherlockliao01@gmail.com
"""
2021-01-22 21:11:19 +08:00
from .autoaugment import AutoAugment
2020-02-10 07:38:56 +08:00
from .build import build_transforms
from .transforms import *
2021-01-22 21:11:19 +08:00
__all__ = [k for k in globals().keys() if not k.startswith("_")]