summaryrefslogtreecommitdiff
path: root/bin/analyze-kconfig.py
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2023-12-20 16:32:25 +0100
committerBirte Kristina Friesel <birte.friesel@uos.de>2023-12-20 16:32:25 +0100
commite70a20ed920ef968b70380537ce925dc91902edd (patch)
treed0f3ce4188093e4af4834371bfff8eef77e18cbb /bin/analyze-kconfig.py
parent7ee09399e7cba10f693ec301961637a9f736750b (diff)
remove unsupported --show-quality choices
Diffstat (limited to 'bin/analyze-kconfig.py')
-rwxr-xr-xbin/analyze-kconfig.py7
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",