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
/usr/local/lib/python3.10/dist-packages/IPython/lib/display.py in init(self, data, filename, url, embed, rate, autoplay, normalize, element_id)
114 if filename is None and url is None and data is None:
115 raise ValueError("No audio data found. Expecting filename, url, or data.")
--> 116 if embed is False and url is None:
117 raise ValueError("No url found. Expecting url when embed=False")
118
ValueError: rate must be specified when data is a numpy array or list of audio samples.
can someone tell me what I need to do or I need to train the model again?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
When I try using the trained model in google colab it keeps saying
ValueError Traceback (most recent call last)
in <cell line: 5>()
3 from IPython.display import Audio, display
4 get_ipython().system('svc infer drive/MyDrive/so-vits-svc-fork/audio/vocals.wav -m drive/MyDrive/so-vits-svc-fork/logs/44k/ -c drive/MyDrive/so-vits-svc-fork/logs/44k/config.json')
----> 5 display(Audio(f"drive/MyDrive/so-vits-svc-fork/audio/vocals.out.wav", autoplay=True))
/usr/local/lib/python3.10/dist-packages/IPython/lib/display.py in init(self, data, filename, url, embed, rate, autoplay, normalize, element_id)
114 if filename is None and url is None and data is None:
115 raise ValueError("No audio data found. Expecting filename, url, or data.")
--> 116 if embed is False and url is None:
117 raise ValueError("No url found. Expecting url when embed=False")
118
ValueError: rate must be specified when data is a numpy array or list of audio samples.
can someone tell me what I need to do or I need to train the model again?
Beta Was this translation helpful? Give feedback.
All reactions