Visualizer

The Visualizer reads a finished run's save file, prints summary statistics (pass rate, per-class breakdown, checker runtimes), and writes a stacked-bar chart next to the save file. It is invoked automatically at the end of ape.run.run, or on demand via python -m ape visualize.

visualizer

Visualizer

Reads a finished run's save file and reports on it: prints summary statistics (pass rate, a per-class breakdown, and checker runtimes) to stdout and writes a stacked-bar chart next to the save file. Run automatically at the end of ape.run.run and on demand via python -m ape visualize.

visualize

visualize(run_params: RunParams) -> None

Summarize and plot the run identified by run_params.

Reads run_params.save_file (and metadata_file if present), prints a summary, and writes <save_stem>_visualized.png beside the save file. No-ops with a message if the save file is missing, and skips the plot if matplotlib is not installed.

Parameters:
  • run_params (RunParams) –

    Locates the save and metadata files to visualize.