Update README.md
Browse files
README.md
CHANGED
|
@@ -57,7 +57,7 @@ Please notice that we encourage you to read our tutorials and learn more about
|
|
| 57 |
An external `py_module_file=custom.py` is used as an external Predictor class into this HF repos. We use `foreign_class` function from `speechbrain.pretrained.interfaces` that allow you to load you custom model.
|
| 58 |
|
| 59 |
```python
|
| 60 |
-
from speechbrain.
|
| 61 |
classifier = foreign_class(source="speechbrain/emotion-recognition-wav2vec2-IEMOCAP", pymodule_file="custom_interface.py", classname="CustomEncoderWav2vec2Classifier")
|
| 62 |
out_prob, score, index, text_lab = classifier.classify_file("speechbrain/emotion-recognition-wav2vec2-IEMOCAP/anger.wav")
|
| 63 |
print(text_lab)
|
|
|
|
| 57 |
An external `py_module_file=custom.py` is used as an external Predictor class into this HF repos. We use `foreign_class` function from `speechbrain.pretrained.interfaces` that allow you to load you custom model.
|
| 58 |
|
| 59 |
```python
|
| 60 |
+
from speechbrain.inference.interfaces import foreign_class
|
| 61 |
classifier = foreign_class(source="speechbrain/emotion-recognition-wav2vec2-IEMOCAP", pymodule_file="custom_interface.py", classname="CustomEncoderWav2vec2Classifier")
|
| 62 |
out_prob, score, index, text_lab = classifier.classify_file("speechbrain/emotion-recognition-wav2vec2-IEMOCAP/anger.wav")
|
| 63 |
print(text_lab)
|