Instructions to use microsoft/wham with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- WHAM
How to use microsoft/wham with WHAM:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
File size: 508 Bytes
f1c8ee5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Tested using Python 3.9
echo "Making and activating a new virtual environment..."
python3.9 -m venv venv
echo "Activating the virtual environment..."
source venv/bin/activate
echo "Upgrading pip..."
pip install --upgrade pip
echo "Instaling the required packages..."
pip install -r requirements.txt
echo "Instaling the exiftool package for adding file metadata on Linux..."
sudo apt install -y exiftool
echo "Installing ffmpeg..."
sudo apt install ffmpeg
echo "All packages installed successfully!"
|