优化6个类,现在ks降低到0.28,史称3.0版本

This commit is contained in:
2026-01-28 20:10:42 +08:00
parent 59697c0640
commit 39eede92f6
28 changed files with 3317 additions and 225 deletions

View File

@@ -89,6 +89,7 @@ def main():
run([sys.executable, str(base_dir / "evaluate_generated.py")])
run([sys.executable, str(base_dir / "summary_metrics.py")])
run([sys.executable, str(base_dir / "filtered_metrics.py")])
run([sys.executable, str(base_dir / "ranked_ks.py")])
if not args.skip_diagnose:
run(
[
@@ -102,6 +103,80 @@ def main():
"10",
]
)
run(
[
sys.executable,
str(base_dir / "program_stats.py"),
"--generated",
str(base_dir / "results" / "generated.csv"),
"--reference",
str(config_path),
"--config",
str(config_path),
]
)
run(
[
sys.executable,
str(base_dir / "controller_stats.py"),
"--generated",
str(base_dir / "results" / "generated.csv"),
"--reference",
str(config_path),
"--config",
str(config_path),
]
)
run(
[
sys.executable,
str(base_dir / "actuator_stats.py"),
"--generated",
str(base_dir / "results" / "generated.csv"),
"--reference",
str(config_path),
"--config",
str(config_path),
]
)
run(
[
sys.executable,
str(base_dir / "pv_stats.py"),
"--generated",
str(base_dir / "results" / "generated.csv"),
"--reference",
str(config_path),
"--config",
str(config_path),
]
)
run(
[
sys.executable,
str(base_dir / "aux_stats.py"),
"--generated",
str(base_dir / "results" / "generated.csv"),
"--reference",
str(config_path),
"--config",
str(config_path),
]
)
run(
[
sys.executable,
str(base_dir / "postprocess_types.py"),
"--generated",
str(base_dir / "results" / "generated.csv"),
"--reference",
str(config_path),
"--config",
str(config_path),
"--out",
str(base_dir / "results" / "generated_post.csv"),
]
)
if __name__ == "__main__":