fix: remove 32-clip cap on DITTO reference loading — use all available clips

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-09 18:10:10 +02:00
parent 608e7df04b
commit 8862089fd0
+1 -1
View File
@@ -203,7 +203,7 @@ class SelvaDittoOptimizer:
ref_mels = []
with torch.no_grad():
for rf in ref_files[:32]: # cap at 32 for speed
for rf in ref_files:
try:
wav, sr = _load_wav(rf)
if wav.shape[0] > 1: