├── .gitignore ├── LICENSE ├── Makefile ├── MusicGen_Dreamboothing.ipynb ├── README.md ├── dreambooth_musicgen.py ├── example_configs └── punk.json ├── setup.py └── utils ├── __init__.py └── labels.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylacombe/musicgen-dreamboothing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylacombe/musicgen-dreamboothing/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylacombe/musicgen-dreamboothing/HEAD/Makefile -------------------------------------------------------------------------------- /MusicGen_Dreamboothing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylacombe/musicgen-dreamboothing/HEAD/MusicGen_Dreamboothing.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylacombe/musicgen-dreamboothing/HEAD/README.md -------------------------------------------------------------------------------- /dreambooth_musicgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylacombe/musicgen-dreamboothing/HEAD/dreambooth_musicgen.py -------------------------------------------------------------------------------- /example_configs/punk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylacombe/musicgen-dreamboothing/HEAD/example_configs/punk.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylacombe/musicgen-dreamboothing/HEAD/setup.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylacombe/musicgen-dreamboothing/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylacombe/musicgen-dreamboothing/HEAD/utils/labels.py --------------------------------------------------------------------------------