Fix: Add missing librosa dependency installation in example code

#6
Files changed (1) hide show
  1. README.md +1 -0
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
+ # Requires: librosa
109
  from transformers import AutoModelForAudioClassification, AutoFeatureExtractor
110
  import librosa
111
  import torch