mirror of
https://github.com/JDAI-CV/fast-reid.git
synced 2025-06-03 14:50:47 +08:00
16 lines
229 B
Python
16 lines
229 B
Python
# encoding: utf-8
|
|
"""
|
|
@author: l1aoxingyu
|
|
@contact: sherlockliao01@gmail.com
|
|
"""
|
|
|
|
from fastreid.config import CfgNode as CN
|
|
|
|
|
|
def add_partialreid_config(cfg):
|
|
_C = cfg
|
|
|
|
_C.TEST.DSR = CN()
|
|
_C.TEST.DSR.ENABLED = True
|
|
|