File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 113
113
help_s = (
114
114
"Columns to add to the table. "
115
115
"Accepts a comma-separated list of values. "
116
- f"Legal values: { ', ' .join (KEY_PROPERTIES [:- 2 ])} . "
116
+ f"Legal values: { ', ' .join (KEY_PROPERTIES [:- 3 ])} . "
117
117
"Defaults to model name (model_type) and CPU and/or GPU name (cpu_info, gpu_info) "
118
118
"plus any column where not all data points are the same. "
119
119
"If the columns are manually specified, then the results for each unique combination of the "
@@ -505,7 +505,7 @@ def valid_format(data_files: list[str]) -> bool:
505
505
show = known_args .show .split ("," )
506
506
unknown_cols = []
507
507
for prop in show :
508
- if prop not in KEY_PROPERTIES [:- 2 ]: # Last two values are n_prompt, n_gen.
508
+ if prop not in KEY_PROPERTIES [:- 3 ]: # Last three values are n_prompt, n_gen, n_depth .
509
509
unknown_cols .append (prop )
510
510
if unknown_cols :
511
511
logger .error (f"Unknown values for --show: { ', ' .join (unknown_cols )} " )
You can’t perform that action at this time.
0 commit comments