• https://git.ecker.tech/ aims to provide a place to share my efforts while maintaining true ownership of my code, as I do not trust GitHub.

    XMR: 4B9TQdkAkBFYrbj5ztvTx89e5LpucPeTSPzemCihdDi9EBnx7btn8RDNZTBz2zihWsjMnDkzn5As1LU6gLv3KQy8BLsZ8SG

  • Joined on 2022-10-10
ecker pushed to master at ecker/ai-voice-cloning 2023-03-05 07:37:50 +00:00
d312019d05 reordered things so it uses fresh data and not last-updated data
ecker pushed to master at ecker/ai-voice-cloning 2023-03-05 06:45:19 +00:00
ce3866d0cd added '''estimating''' iterations until milestones (lr=[1, 0.5, 0.1] and final lr, very, very inaccurate because it uses instantaneous delta lr, I'll need to do a riemann sum later
ecker pushed to master at ecker/vee-speedrun-ratings 2023-03-05 06:30:56 +00:00
5445e1c4b9 don't cry because it happened, smile because it's over
ecker commented on issue ecker/ai-voice-cloning#54 2023-03-05 05:27:12 +00:00
Getting "RuntimeError: cuDNN error: CUDNN_STATUS_INTERNAL_ERROR" while training

Added a field to reduce the worker size. By default, it's set to 2, as there doesn't seem to be any performance penalties.

If you're running into that memory issue again, regenerate your…

ecker closed issue ecker/ai-voice-cloning#54 2023-03-05 05:27:12 +00:00
Getting "RuntimeError: cuDNN error: CUDNN_STATUS_INTERNAL_ERROR" while training
ecker commented on issue ecker/ai-voice-cloning#59 2023-03-05 05:24:31 +00:00
Set Whisper default to Base-EN

Compromise implemented in commit 3e220ed306c619868fb4195afffd622a013d771d.

Default language is set to en (compatible with both implemented whisper implementations).

When a specialized…

ecker closed issue ecker/ai-voice-cloning#59 2023-03-05 05:24:31 +00:00
Set Whisper default to Base-EN
ecker pushed to master at ecker/ai-voice-cloning 2023-03-05 05:22:48 +00:00
1316331be3 forgot to try and have it try and auto-detect for openai/whisper when no language is specified
ecker pushed to master at ecker/ai-voice-cloning 2023-03-05 05:17:36 +00:00
3e220ed306 added option to set worker size in training config generator (because the default is overkill), for whisper transcriptions, load a specialized language model if it exists (for now, only english), output transcription to web UI when done transcribing
ecker commented on issue ecker/ai-voice-cloning#54 2023-03-05 01:44:20 +00:00
Getting "RuntimeError: cuDNN error: CUDNN_STATUS_INTERNAL_ERROR" while training

Just wanting to follow up, as an incidental discovery, the amount of system RAM training can consume can really creep up on you. I haven't gotten any luxurious messages about memory allocation…

ecker commented on issue ecker/ai-voice-cloning#59 2023-03-05 01:29:04 +00:00
Set Whisper default to Base-EN

I'll compromise and have it automatically use the -en version if a non -en model is selected. desu, I think it's better to have it default to a more universal model over having a more…

ecker closed issue ecker/ai-voice-cloning#56 2023-03-05 01:23:51 +00:00
Cant seem to start.bat anymore
ecker closed issue ecker/ai-voice-cloning#51 2023-03-05 01:23:41 +00:00
Something went wrong "load_voice() got an unexpected keyword argument 'model_hash'"
ecker closed issue ecker/ai-voice-cloning#47 2023-03-05 01:23:29 +00:00
ERROR: Could not open requirements file: [Errno 2] No such file or directory:
ecker closed issue ecker/ai-voice-cloning#38 2023-03-05 01:23:06 +00:00
Giving up on training shortly after starting
ecker pushed to master at ecker/ai-voice-cloning 2023-03-04 20:53:17 +00:00
37cab14272 use torchrun instead for multigpu
ecker pushed to master at ecker/ai-voice-cloning 2023-03-04 20:43:04 +00:00
5026d93ecd sloppy fix to actually kill children when using multi-GPU distributed training, set GPU training count based on what CUDA exposes automatically so I don't have to keep setting it to 2
ecker pushed to master at ecker/ai-voice-cloning 2023-03-04 17:40:37 +00:00
1a9d159b2a forgot to add 'bs / gradient accum < 2 clamp validation logic
ecker pushed to master at ecker/DL-Art-School 2023-03-04 16:38:32 +00:00
6eb7ebf847 silence printing the model because it's just useless noise
ecker pushed to master at ecker/ai-voice-cloning 2023-03-04 15:59:35 +00:00
df24827b9a renamed mega batch factor to an actual real term: gradient accumulation factor, fixed halting training not actually killing the training process and freeing up resources, some logic cleanup for gradient accumulation (so many brain worms and wrong assumptions from testing on low batch sizes) (read the training section in the wiki for more details)