The --ks option for script/eval.py should add "type=int"?
Closed this issue · 0 comments
toushi68 commented
the code:
parser.add_argument('--ks',
nargs='+', default=[1000, 10000],
help='Prefixes to calc uniqueness at')
should be:
parser.add_argument('--ks',
type=int, nargs='+', default=[1000, 10000],
help='Prefixes to calc uniqueness at')