deep-person-reid/torchreid/__init__.py

10 lines
359 B
Python
Raw Normal View History

2019-12-01 10:35:44 +08:00
from __future__ import print_function, absolute_import
2018-08-15 05:38:55 +08:00
2019-12-01 11:35:09 +08:00
from torchreid import data, optim, utils, engine, losses, models, metrics
2021-04-27 15:31:30 +08:00
__version__ = '1.4.0'
2018-08-15 05:38:55 +08:00
__author__ = 'Kaiyang Zhou'
2019-11-04 18:47:49 +08:00
__homepage__ = 'https://kaiyangzhou.github.io/'
2019-04-18 19:10:54 +08:00
__description__ = 'Deep learning person re-identification in PyTorch'
2019-08-26 20:26:10 +08:00
__url__ = 'https://github.com/KaiyangZhou/deep-person-reid'