mirror of https://github.com/JDAI-CV/fast-reid.git
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
|
||
|
|