jcjohnson / jcjohnson/densecap
misleading help tip
Open
- Dominant language
- Jupyter Notebook
- Stars
- 1.6k
- Forks
- 424
- PR merge metrics
- No merged PRs in 30d
Description
_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
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.