при попытке использовать голосовой генератор с веб-сайта autokeras на Google Collab я получаю сообщение об ошибке: "predict() takes 2 positional arguments but 3 were given"
вместо wav-файла
вот код:
from autokeras.pretrained import VoiceGenerator
voice_generator = VoiceGenerator()
text = "The approximation of pi is 3.14"
print(voice_generator.predict(text, "test.wav"))