gr.Dropdown list index out of range when starting server #22
Labels
No Label
bug
duplicate
enhancement
help wanted
insufficient info
invalid
news
not a bug
question
wontfix
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: mrq/ai-voice-cloning#22
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Tried running server after failing to generate voice due to running out of memory (error in console
happened after running out of memory due to error in issue #17 with 3080's.)
Ngl a lot went down but mainly these are the steps that led up to the error:
Probably super specific error but figure'd I'd mention it just in case.
Forgot to mention, but setting
append_defaults
toTrue
on theget_voice_list()
function insrc/utils.py:782
gets rid of the error.Makes sense since the error indicates that 0 is an invalid index, meaning that the list is empty. Appending the defaults to the list gives it something but I'm not sure where the list would otherwise initialize. I'm guessing the code expects there to be a preset list from elsewhere (not just the folders inside
./voices
), but I haven't found another code that appends to that list.Fixed in commit
93b061fb4d
. It's because I did my testing while still having a results folder, and when I did incidentally empty my results folder, the UI was already opened anyways.Depending on if your sources are too large when combined, you'll need to play around with the "voice chunk" slider, which I might as well try and adjust how it works since it seems to be neglected.