You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your work on this repository, it has been very helpful to me!
I encountered the following error when attempting to build the dusty/xtts:r36.4 image using jetson-containers:
Error compiling Cython file:
------------------------------------------------------------
...
cdef Pool mem
cpdef readonly StringStore strings
cpdef public Morphology morphology
cpdef public object vectors
cpdef public object _lookups
cpdef public object writing_system
^
------------------------------------------------------------
spacy\vocab.pxd:32:10: Variables cannot be declared with 'cpdef'. Use 'cdef' instead.
Error compiling Cython file:
------------------------------------------------------------
...
cpdef readonly StringStore strings
cpdef public Morphology morphology
cpdef public object vectors
cpdef public object _lookups
cpdef public object writing_system
cpdef public object get_noun_chunks
^
------------------------------------------------------------
spacy\vocab.pxd:33:10: Variables cannot be declared with 'cpdef'. Use 'cdef' instead.
Error compiling Cython file:
------------------------------------------------------------
...
cdef float prior_prob
cdef class KnowledgeBase:
cdef Pool mem
cpdef readonly Vocab vocab
Upon investigation, I found a similar issue in the original TTS repository issue #4029, which identifies the cause as the old version of the XTTS repository being deprecated and migrated to a new repository idiap/coqui-ai-TTS. It appears that your build scripts still reference a fork of the deprecated version, which could lead to this problem persisting in the future, given that the old repository is no longer supported.
The text was updated successfully, but these errors were encountered:
Thank you for your work on this repository, it has been very helpful to me!
I encountered the following error when attempting to build the dusty/xtts:r36.4 image using jetson-containers:
Upon investigation, I found a similar issue in the original TTS repository issue #4029, which identifies the cause as the old version of the XTTS repository being deprecated and migrated to a new repository idiap/coqui-ai-TTS. It appears that your build scripts still reference a fork of the deprecated version, which could lead to this problem persisting in the future, given that the old repository is no longer supported.
The text was updated successfully, but these errors were encountered: