mirror of
https://github.com/JDAI-CV/fast-reid.git
synced 2025-06-03 14:50:47 +08:00
12 lines
246 B
Python
12 lines
246 B
Python
# encoding: utf-8
|
|
"""
|
|
@author: sherlock
|
|
@contact: sherlockliao01@gmail.com
|
|
"""
|
|
|
|
from .autoaugment import AutoAugment
|
|
from .build import build_transforms
|
|
from .transforms import *
|
|
|
|
__all__ = [k for k in globals().keys() if not k.startswith("_")]
|