We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current import path for the EncoderClassifier class is incorrect in unit 6 notebook "Fine-tuning SpeechT5".
It points to speechbrain.pretrained instead of the correct path, which is speechbrain.inference.speaker (see: https://huggingface.co/speechbrain/spkrec-ecapa-voxceleb#compute-your-speaker-embeddings).
speechbrain.pretrained
speechbrain.inference.speaker
So changing
from speechbrain.pretrained import EncoderClassifier
to
from speechbrain.inference.speaker import EncoderClassifier
worked for me.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The current import path for the EncoderClassifier class is incorrect in unit 6 notebook "Fine-tuning SpeechT5".
It points to
speechbrain.pretrained
instead of the correct path, which isspeechbrain.inference.speaker
(see: https://huggingface.co/speechbrain/spkrec-ecapa-voxceleb#compute-your-speaker-embeddings).So changing
from speechbrain.pretrained import EncoderClassifier
to
from speechbrain.inference.speaker import EncoderClassifier
worked for me.
The text was updated successfully, but these errors were encountered: