You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`--report-type`| str | separate-tables | ('separate-tables',) | Report type ("separate-tables" is the only supported now). |
20
-
|`--drop-columns`</br>`--drop-cols`| str |[]|| Columns to drop from report. |
21
-
|`--diff-columns`</br>`--diff-cols`| str |['environment_name', 'library', 'device']|| Columns to show difference between. |
22
-
|`--split-columns`| str |['estimator', 'method', 'function']|| Splitting columns for subreports/sheets. |
23
-
|`--diffs-selection`| str | upper_triangle |['upper_triangle', 'lower_triangle', 'matrix']| Selects which part of one-vs-one difference to show (all matrix or one of triangles). |
24
-
|`--time-color-scale`| float |[0.8, 1.0, 10.0]|| Time improvement color scale in report. |
25
-
|`--metric-color-scale`| float |[0.99, 0.995, 1.01]|| Metric improvement color scale in report. |
14
+
| Name | Type | Default value | Choices | Description |
|`--report-type`| str | separate-tables | ('separate-tables',) | Report type ("separate-tables" is the only supported now). |
20
+
|`--compatibility-mode`|| False ||[EXPERIMENTAL] Compatibility mode drops and modifies results to make them comparable (for example, sklearn and cuML parameters). |
21
+
|`--drop-columns`</br>`--drop-cols`| str |[]|| Columns to drop from report. |
22
+
|`--diff-columns`</br>`--diff-cols`| str |['environment_name', 'library', 'format', 'device']|| Columns to show difference between. |
23
+
|`--split-columns`| str |['estimator', 'method', 'function']|| Splitting columns for subreports/sheets. |
24
+
|`--diffs-selection`| str | upper_triangle |['upper_triangle', 'lower_triangle', 'matrix']| Selects which part of one-vs-one difference to show (all matrix or one of triangles). |
25
+
|`--perf-color-scale`| float |[0.8, 1.0, 10.0]|| Color scale for performance metric improvement in report. |
26
+
|`--quality-color-scale`| float |[0.99, 0.995, 1.01]|| Color scale for quality metric improvement in report. |
|`--bench-log-level`| str | WARNING | ('ERROR', 'WARNING', 'INFO', 'DEBUG') | Logging level for each running benchmark. |
44
-
|`--log-level`| str || ('ERROR', 'WARNING', 'INFO', 'DEBUG') | Global logging level for benchmarks: overwrites runner, bench and report log levels. |
45
-
|`--config`</br>`--configs`| str ||| Paths to a configuration files or/and directories that contain configuration files. |
46
-
|`--parameters`</br>`--params`</br>`-p`| str ||| Globally defines or overwrites config parameters. For example: `-p data:dtype=float32 data:order=F`. |
47
-
|`--parameter-filters`</br>`--filters`</br>`-f`| str ||| Filters benchmark bench_cases by config parameters. For example: `-f data:dtype=float32 data:order=F`. |
48
-
|`--result-file`</br>`-r`| str | result.json || File path to store scikit-learn_bench's runned cases results. |
49
-
|`--environment-alias`</br>`--env-alias`| str ||| Environment alias to use instead of it's configuration hash. |
50
-
|`--prefetch-datasets`| Flag | False ||[EXPERIMENTAL] Load datasets in parallel before running benchmarks. |
51
-
|`--describe-parser`| Flag | False || Print parser description in Markdown table format and exit. |
52
-
|`--generate-report`</br>`--gen-report`| Flag | False || Enables generation of report. |
53
-
54
-
Also, benchmarks runner includes and takes into the account [arguments of report generator](../report/README.md#arguments) if `--generate-report` flag is passed.
40
+
| Name | Type | Default value | Choices | Description |
|`--bench-log-level`| str | WARNING | ('ERROR', 'WARNING', 'INFO', 'DEBUG') | Logging level for each running benchmark. |
44
+
|`--log-level`</br>`-l`| str || ('ERROR', 'WARNING', 'INFO', 'DEBUG') | Global logging level for benchmarks: overwrites runner, benchmarks and report logging levels. |
45
+
|`--config`</br>`--configs`</br>`-c`| str ||| Paths to a configuration files or/and directories that contain configuration files. |
46
+
|`--parameters`</br>`--params`</br>`-p`| str ||| Globally defines or overwrites config parameters. For example: `-p data:dtype=float32 data:order=F`. |
47
+
|`--parameter-filters`</br>`--filters`</br>`-f`| str ||| Filters benchmarking cases by parameter values. For example: `-f data:dtype=float32 data:order=F`. |
48
+
|`--result-file`</br>`-r`| str | result.json || File path to store scikit-learn_bench's runned cases results. |
49
+
|`--environment-name`</br>`--env-name`</br>`-e`| str ||| Environment name to use instead of it's configuration hash. |
50
+
|`--prefetch-datasets`|| False || Load all requested datasets in parallel before running benchmarks. |
51
+
|`--exit-on-error`|| False || Interrupt runner and exit if last benchmark failed with error. |
52
+
|`--describe-parser`|| False || Print parser description in Markdown table format and exit. |
53
+
|`--report`|| False || Enables generation of report. |
54
+
55
+
Also, benchmarks runner includes and takes into the account [arguments of report generator](../report/README.md#arguments) if `--report` flag is passed.
0 commit comments