From 99b124304fa9c8e48cf428db885c964007c1eb57 Mon Sep 17 00:00:00 2001 From: "zuchen.wang" <zuchen.wang@vipshop.com> Date: Fri, 29 Oct 2021 11:36:55 +0800 Subject: [PATCH] change input size to (0,0) --- fastreid/config/defaults.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastreid/config/defaults.py b/fastreid/config/defaults.py index 520abbb..63b8732 100644 --- a/fastreid/config/defaults.py +++ b/fastreid/config/defaults.py @@ -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})