densecap icon indicating copy to clipboard operation
densecap copied to clipboard

misleading help tip

Open aicentral opened this issue 8 years ago • 0 comments

parser.add_argument('--max_token_length', default=15, type=int, help="Set to 0 to disable filtering")

Setting that to zero will not disable filtering. it will discard all tokens according to if max_token_length > 0 and len(tokens) <= max_token_length: ... else: region['tokens'] = None captions_removed += 1 img_removed += 1

The help tip is misleading and should be updated Thanks for your efforts

aicentral avatar Jan 04 '17 15:01 aicentral