change input size to (0,0)

pull/608/head
zuchen.wang 2021-10-29 11:36:55 +08:00
parent 31d7a51b62
commit 99b124304f
1 changed files with 2 additions and 2 deletions

View File

@ -149,9 +149,9 @@ _C.KD.EMA.MOMENTUM = 0.999
# -----------------------------------------------------------------------------
_C.INPUT = CN()
# Size of the image during training
_C.INPUT.SIZE_TRAIN = [256, 128]
_C.INPUT.SIZE_TRAIN = [0, 0]
# Size of the image during test
_C.INPUT.SIZE_TEST = [256, 128]
_C.INPUT.SIZE_TEST = [0, 0]
# `True` if cropping is used for data augmentation during training
_C.INPUT.CROP = CN({"ENABLED": False})