mirror of
https://github.com/KaiyangZhou/deep-person-reid.git
synced 2025-06-03 14:53:23 +08:00
17 lines
305 B
Python
17 lines
305 B
Python
from __future__ import absolute_import
|
|
from __future__ import print_function
|
|
|
|
__version__ = '0.7.5'
|
|
__author__ = 'Kaiyang Zhou'
|
|
__description__ = 'Deep learning person re-identification in PyTorch'
|
|
|
|
from torchreid import (
|
|
engine,
|
|
models,
|
|
losses,
|
|
metrics,
|
|
data,
|
|
optim,
|
|
utils
|
|
)
|