Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Shengcai Liao committed Mar 31, 2021
1 parent e057350 commit 06d7473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 06d7473

Please sign in to comment.