19 lines
413 B
Python
19 lines
413 B
Python
from __future__ import absolute_import
|
|
from __future__ import print_function
|
|
|
|
__version__ = '1.0.6'
|
|
__author__ = 'Kaiyang Zhou'
|
|
__homepage__ = 'https://kaiyangzhou.github.io/'
|
|
__description__ = 'Deep learning person re-identification in PyTorch'
|
|
__url__ = 'https://github.com/KaiyangZhou/deep-person-reid'
|
|
|
|
from torchreid import (
|
|
engine,
|
|
models,
|
|
losses,
|
|
metrics,
|
|
data,
|
|
optim,
|
|
utils
|
|
)
|