Fix: Add missing librosa dependency installation in example code
#5
by
anon-repair-bot
- opened
README.md
CHANGED
@@ -105,6 +105,7 @@ After training, the model is evaluated on the test dataset, and the results are
|
|
105 |
|
106 |
## 🚀 **How to Use**
|
107 |
```python
|
|
|
108 |
from transformers import AutoModelForAudioClassification, AutoFeatureExtractor
|
109 |
import librosa
|
110 |
import torch
|
|
|
105 |
|
106 |
## 🚀 **How to Use**
|
107 |
```python
|
108 |
+
!{sys.executable} -m pip install librosa
|
109 |
from transformers import AutoModelForAudioClassification, AutoFeatureExtractor
|
110 |
import librosa
|
111 |
import torch
|