diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-12-20 16:32:25 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-12-20 16:32:25 +0100 |
commit | e70a20ed920ef968b70380537ce925dc91902edd (patch) | |
tree | d0f3ce4188093e4af4834371bfff8eef77e18cbb /bin/analyze-kconfig.py | |
parent | 7ee09399e7cba10f693ec301961637a9f736750b (diff) |
remove unsupported --show-quality choices
Diffstat (limited to 'bin/analyze-kconfig.py')
-rwxr-xr-x | bin/analyze-kconfig.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/bin/analyze-kconfig.py b/bin/analyze-kconfig.py index 7eb63c8..8fcb623 100755 --- a/bin/analyze-kconfig.py +++ b/bin/analyze-kconfig.py @@ -155,13 +155,10 @@ def main(): ) parser.add_argument( "--show-quality", - choices=["table", "summary", "all", "tex", "html"], + choices=["table"], action="append", default=list(), - help="table: show static/fitted/lut SMAPE and MAE for each name and attribute.\n" - "summary: show static/fitted/lut SMAPE and MAE for each attribute, averaged over all states/transitions.\n" - "all: all of the above.\n" - "tex: print tex/pgfplots-compatible model quality data on stdout.", + help="table: show LUT, model, and static prediction error for each key and attribute.", ) parser.add_argument( "--plot-param", |