This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !pip install librosa scikit-learn pydub soundfile lightgbm xgboost imbalanced-learn | |
| !apt-get install -y ffmpeg | |
| from google.colab import drive | |
| import os | |
| from pydub import AudioSegment | |
| drive.mount('/content/drive') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 📦 Step 1: Install dependencies | |
| !pip install librosa scikit-learn pydub soundfile | |
| !apt-get install -y ffmpeg | |
| # 📁 Step 2: Mount Google Drive and define paths | |
| from google.colab import drive | |
| import os | |
| from pydub import AudioSegment |