Error when training voice #105
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#105
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?
Did a fresh install. When trying to run training, I get the following error:
Oh, it's something really silly. The way I'm making the config is by string replacement instead of just loading the YAML, setting the keys, and exporting it like a normal person. Your dataset name is being interpreted as an int, because YAML, for god knows why, doesn't require string values to be wrapped in quotes, so I never thought to wrap it in quotes.
I'll fix it by editing the template to wrap them in quotes, but for now you can either:
name: 21
toname: '21'
)I'll fix it in a moment.
Remedied in
d3184004fd
. Untested, but I'm very confident it works.Another quick bandaid fix solution was to wrap it yourself, but would have required you to force-update with
git fetch --all
andgit reset --hard origin/master
(icky).