mirror of
https://github.com/sjvasquez/handwriting-synthesis.git
synced 2026-04-03 00:19:13 -06:00
Fix Bug #73
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github/handwriting-synthesis#73
Loading…
Add table
Add a link
Reference in a new issue
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?
Originally created by @AliRaza1844 on 10/2/2018
When I tried to run the model I was having the following error:
TypeError: can only concatenate list (not "dict_values") to list
by changing self.metrics.values() to list(self.metrics.values()) the error removed. And the model started running.