Updated based on feedback:

- Profit commands now use float
- Compatible with --best
- Corrected wrong information in docs
This commit is contained in:
Fredrik Rydin
2020-02-10 20:54:31 +01:00
parent 5bf4c5869b
commit c924e4d519
3 changed files with 140 additions and 70 deletions

View File

@@ -401,14 +401,14 @@ AVAILABLE_CLI_OPTIONS = {
"hyperopt_list_min_avg_time": Arg(
'--min-avg-time',
help='Select epochs on above average time.',
type=check_int_nonzero,
metavar='INT',
type=float,
metavar='FLOAT',
),
"hyperopt_list_max_avg_time": Arg(
'--max-avg-time',
help='Select epochs on under average time.',
type=check_int_nonzero,
metavar='INT',
type=float,
metavar='FLOAT',
),
"hyperopt_list_min_avg_profit": Arg(
'--min-avg-profit',