Breaking changes due to SpeechBrain new release 1.0

#1
by gelbanna - opened

Hello,
In the model cards, it is mentioned to use

from speechbrain.pretrained.interfaces import Pretrained
from speechbrain.pretrained import EncoderClassifier

However, with the new release (1.0) this will cause an error (module not found) since the API has been changed.

Perhaps replace it with

from speechbrain.inference.interfaces import Pretrained
from speechbrain.inference.classifiers import EncoderClassifier

Sign up or log in to comment