deep-person-reid/torchreid/__init__.py

16 lines
315 B
Python
Raw Normal View History

2019-03-20 01:26:08 +08:00
from __future__ import absolute_import
from __future__ import print_function
2018-08-15 05:38:55 +08:00
2019-03-26 02:49:20 +08:00
__version__ = '0.7.1'
2018-08-15 05:38:55 +08:00
__author__ = 'Kaiyang Zhou'
2019-03-20 01:26:08 +08:00
__description__ = 'Pytorch framework for deep-learning person re-identification'
from torchreid import (
engine,
models,
losses,
metrics,
data,
optim,
utils
)