Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 2.54 KB

README.md

File metadata and controls

47 lines (34 loc) · 2.54 KB

AudioLM

linting: pylint Colab badge

Implementation of AudioLM paper by google

Installation

pip install https://github.com/Haislich/AudioLM/raw/main/dist/audiolm-0.1.0.tar.gz

Setting up the development environment/ building from source

AudioLM relies on relies on the Poetry build system.

To install poetry

pip install poetry

Once poetry is installed poetry will manage the needed dependencies and set up the working environment.

git clone https://github.com/Haislich/AudioLM   # Clone the repo.
cd AudioLM                                      # Change directory.
poetry shell                                    # This creates the venv.
poetry install                                  # This install the required dependencies.

References