change chunk default

This commit is contained in:
Jarod Mica 2024-03-29 01:57:11 -07:00
parent 64f01d33d2
commit 9f212832b2
2 changed files with 8 additions and 1 deletions

View file

@ -9,6 +9,13 @@ AR Quantization
- ggml - https://github.com/ggerganov/ggml/issues/59
- TortoiseCPP https://github.com/balisujohn/tortoise.cpp
## 3/29/2024
Additional clean-up, discovered that some key files were missing from the repo if you were going to do a manual install
- setup-cuda.bat is much more handsoff now, it pretty much downloads everything you need.
Bug/error:
- Max recursion depth met when trying to use a chunk size of 20... results in training not occuring. Lowered chunk size to 15 by default, not sure why this occurs, but it's possible too long of audio files can't get processed and end up in an endless recursive loop.
## 3/24/2024
Just cleaning up somethings and running tests on the code to make sure it functions as it should. I should think of maybe a way to automate this... but that's a problem for another time.
- Some values like number of processes (num_processes) to spawn based on your CPU cores added for conversion tasks

View file

@ -867,7 +867,7 @@ def setup_gradio():
DATASET2_SETTINGS['language'] = gr.Textbox(
label="Language", value="en")
DATASET2_SETTINGS['chunk_size'] = gr.Textbox(
label="Chunk Size", value="20")
label="Chunk Size", value="15")
DATASET2_SETTINGS['num_processes'] = gr.Textbox(
label="Processes to Use", value=int(max(1, multiprocessing.cpu_count())))