From 06d7473f5b7c65a92aae99fb46a04fc2b87056ff Mon Sep 17 00:00:00 2001 From: Shengcai Liao Date: Wed, 31 Mar 2021 16:54:55 +0400 Subject: [PATCH] Update main.py --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 6d0a816..32e1a87 100644 --- a/main.py +++ b/main.py @@ -329,7 +329,7 @@ def main(args): help="number of channels for the final neck layer, default: 64") parser.add_argument('--ibn', type=str, choices={'a', 'b'}, default=None, help="IBN type. Choose from 'a' or 'b'. Default: None") # TLift - parser.add_argument('--do_tlift', action='store_false', default=True, help="apply TLift, default: True") + parser.add_argument('--do_tlift', action='store_true', default=False, help="apply TLift, default: False") parser.add_argument('--tau', type=float, default=100, help="the interval threshold to define nearby persons in TLift, default: 100") parser.add_argument('--sigma', type=float, default=200,