mirror of
https://github.com/PyRetri/PyRetri.git
synced 2025-06-03 14:49:50 +08:00
18 lines
361 B
Python
18 lines
361 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from yacs.config import CfgNode
|
|
|
|
import torch.nn as nn
|
|
|
|
from .extractors_impl.vgg_series import VggSeries
|
|
from .extractors_impl.res_series import ResSeries
|
|
from .extractors_impl.reid_series import ReIDSeries
|
|
from .extractors_base import ExtractorBase
|
|
|
|
|
|
__all__ = [
|
|
'ExtractorBase',
|
|
'VggSeries', 'ResSeries',
|
|
'ReIDSeries',
|
|
]
|