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-10-23 06:06:25 +08:00
|
|
|
__version__ = '1.0.5'
|
2018-08-15 05:38:55 +08:00
|
|
|
__author__ = 'Kaiyang Zhou'
|
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'
|
2019-03-20 01:26:08 +08:00
|
|
|
|
|
|
|
from torchreid import (
|
|
|
|
engine,
|
|
|
|
models,
|
|
|
|
losses,
|
|
|
|
metrics,
|
|
|
|
data,
|
|
|
|
optim,
|
|
|
|
utils
|
2019-03-26 04:08:31 +08:00
|
|
|
)
|