From 8453d24854a3f563cf24e3818cfa883f60a4ca48 Mon Sep 17 00:00:00 2001 From: beckett Date: Wed, 19 Aug 2026 13:06:48 -0500 Subject: [PATCH] Default W2TG "Use Speaker Adaptation" to on MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The bundled Wav2TextGrid library hard-raises whenever the option is off: ValueError("Disabling speaker adaptation is not supported as of now.") so the previous default of False broke every out-of-the-box W2TG alignment attempt — the user had to find and tick the box before the aligner would run at all. On is the only value the library currently accepts, so it is the only sane default to ship. --- src/voxkit/engines/w2tg_engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/voxkit/engines/w2tg_engine.py b/src/voxkit/engines/w2tg_engine.py index 661adce..f082dfa 100644 --- a/src/voxkit/engines/w2tg_engine.py +++ b/src/voxkit/engines/w2tg_engine.py @@ -85,7 +85,7 @@ name="use_speaker_adaptation", label="Use Speaker Adaptation", field_type=FieldType.CHECKBOX, - default_value=False, + default_value=True, tooltip="Enable speaker adaptation for better alignment results.", ), FieldConfig(