problem with test code
#16
by
korkmazemin1
- opened
Speech Synthesis Solely from Input Text Problem
There is an issue in the code snippet for "1. Speech synthesis solely from input text." Specifically, the import statement on line 12 is incorrect.
Solution
Replace the incorrect import statement with the correct one as shown below:
Incorrect import statement
from modeling_xcodec2 import XCodec2Model
Correct import statement
from xcodec2.modeling_xcodec2 import XCodec2Model