summaryrefslogtreecommitdiff
path: root/bin/analyze-archive.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-archive.py
parent7ee09399e7cba10f693ec301961637a9f736750b (diff)
remove unsupported --show-quality choices
Diffstat (limited to 'bin/analyze-archive.py')
-rwxr-xr-xbin/analyze-archive.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/bin/analyze-archive.py b/bin/analyze-archive.py
index 64792fd..535979c 100755
--- a/bin/analyze-archive.py
+++ b/bin/analyze-archive.py
@@ -234,12 +234,11 @@ if __name__ == "__main__":
)
parser.add_argument(
"--show-quality",
- choices=["table", "summary", "all", "tex"],
+ choices=["table", "summary"],
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",
+ help="table: show LUT, model, and static prediction error for each state/transition and attribute.\n"
+ "summary: show static/fitted/lut SMAPE and MAE for each attribute, averaged over all states/transitions.",
)
parser.add_argument(
"--ignored-trace-indexes",