shreyask commited on
Commit
f8290dd
·
verified ·
1 Parent(s): 4ed1f9b

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. src/worker.ts +0 -1
src/worker.ts CHANGED
@@ -246,7 +246,6 @@ async function generateChunk(
246
  const phonemeTokens = basicTokenize(phonemesRaw);
247
  const phonemesJoined = phonemeTokens.join(" ");
248
  const inputIds = tokenize(phonemesJoined);
249
- console.log(`[KittenTTS] Text: "${text}" → Phonemes: "${phonemesJoined}" (${inputIds.length} tokens)`);
250
 
251
  // Select voice style reference based on text length (matches Python logic)
252
  const refId = Math.min(text.length, voiceData.shape[0] - 1);
 
246
  const phonemeTokens = basicTokenize(phonemesRaw);
247
  const phonemesJoined = phonemeTokens.join(" ");
248
  const inputIds = tokenize(phonemesJoined);
 
249
 
250
  // Select voice style reference based on text length (matches Python logic)
251
  const refId = Math.min(text.length, voiceData.shape[0] - 1);