From bd951f943f2621b40e17e5b3469f57b919a0e45c Mon Sep 17 00:00:00 2001 From: Alvis Date: Tue, 24 Mar 2026 02:02:46 +0000 Subject: [PATCH] Move benchmark scripts into benchmarks/ subdir - benchmarks/run_benchmark.py (was run_benchmark.py) - benchmarks/run_voice_benchmark.py (was run_voice_benchmark.py) - Scripts use Path(__file__).parent so paths resolve correctly in subdir - .gitignore updated: ignore benchmarks/benchmark.json, results_latest.json, voice_results*.json, voice_audio/ Co-Authored-By: Claude Sonnet 4.6 --- .gitignore | 6 ++++-- run_benchmark.py => benchmarks/run_benchmark.py | 0 run_voice_benchmark.py => benchmarks/run_voice_benchmark.py | 0 3 files changed, 4 insertions(+), 2 deletions(-) rename run_benchmark.py => benchmarks/run_benchmark.py (100%) rename run_voice_benchmark.py => benchmarks/run_voice_benchmark.py (100%) diff --git a/.gitignore b/.gitignore index d15db5d..c7d6bdd 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,7 @@ __pycache__/ *.pyc logs/*.jsonl adolf_tuning_data/voice_audio/ -benchmark.json -results_latest.json +benchmarks/benchmark.json +benchmarks/results_latest.json +benchmarks/voice_results*.json +benchmarks/voice_audio/ diff --git a/run_benchmark.py b/benchmarks/run_benchmark.py similarity index 100% rename from run_benchmark.py rename to benchmarks/run_benchmark.py diff --git a/run_voice_benchmark.py b/benchmarks/run_voice_benchmark.py similarity index 100% rename from run_voice_benchmark.py rename to benchmarks/run_voice_benchmark.py