mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-04-28 03:30:20 +00:00
adjust q3tts chunking
This commit is contained in:
parent
a1fc912452
commit
a8841063b5
1 changed files with 1 additions and 1 deletions
|
|
@ -803,7 +803,7 @@ bool AudioTokenizerDecoder::decode(const int32_t * codes, int32_t n_frames,
|
|||
return true;
|
||||
}
|
||||
|
||||
const int32_t max_frames = 32;
|
||||
const int32_t max_frames = 1024; //this does not actually speed up currently. we just do it to bound the graph size. but it degrades quality!
|
||||
|
||||
if (max_frames > 0 && n_frames > max_frames) {
|
||||
samples.clear();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue