From 7d074e1ee612aae71d6d501d650a54912c1a9862 Mon Sep 17 00:00:00 2001 From: Alex <36247722+Alex-Wengg@users.noreply.github.com> Date: Thu, 5 Mar 2026 01:46:03 +0800 Subject: [PATCH] chore: consolidate Python scripts into Scripts/ (#344) ## Summary - Move `Benchmarks/nemo` to `Scripts/nemo_ami_benchmark` - Move `Tools/voice_cloning` to `Scripts/voice_cloning` - Remove now-empty `Benchmarks/` and `Tools/` top-level directories Consolidates standalone Python utilities into a single `Scripts/` directory to reduce top-level clutter. ## Test plan - [x] Verify files moved correctly (no content changes) --- Open with Devin --- {Benchmarks/nemo => Scripts/nemo_ami_benchmark}/README.md | 0 .../nemo => Scripts/nemo_ami_benchmark}/nemo_ami_benchmark.py | 0 run_benchmarks.py => Scripts/run_benchmarks.py | 0 {Tools => Scripts}/voice_cloning/README.md | 0 {Tools => Scripts}/voice_cloning/evaluate_voice.py | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename {Benchmarks/nemo => Scripts/nemo_ami_benchmark}/README.md (100%) rename {Benchmarks/nemo => Scripts/nemo_ami_benchmark}/nemo_ami_benchmark.py (100%) rename run_benchmarks.py => Scripts/run_benchmarks.py (100%) rename {Tools => Scripts}/voice_cloning/README.md (100%) rename {Tools => Scripts}/voice_cloning/evaluate_voice.py (100%) diff --git a/Benchmarks/nemo/README.md b/Scripts/nemo_ami_benchmark/README.md similarity index 100% rename from Benchmarks/nemo/README.md rename to Scripts/nemo_ami_benchmark/README.md diff --git a/Benchmarks/nemo/nemo_ami_benchmark.py b/Scripts/nemo_ami_benchmark/nemo_ami_benchmark.py similarity index 100% rename from Benchmarks/nemo/nemo_ami_benchmark.py rename to Scripts/nemo_ami_benchmark/nemo_ami_benchmark.py diff --git a/run_benchmarks.py b/Scripts/run_benchmarks.py similarity index 100% rename from run_benchmarks.py rename to Scripts/run_benchmarks.py diff --git a/Tools/voice_cloning/README.md b/Scripts/voice_cloning/README.md similarity index 100% rename from Tools/voice_cloning/README.md rename to Scripts/voice_cloning/README.md diff --git a/Tools/voice_cloning/evaluate_voice.py b/Scripts/voice_cloning/evaluate_voice.py similarity index 100% rename from Tools/voice_cloning/evaluate_voice.py rename to Scripts/voice_cloning/evaluate_voice.py