Docker Facebook Demucs

Dockerized Facebook Demucs library to make it easy its execution
Alternatives To Docker Facebook Demucs
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Netdata65,170
a day ago359gpl-3.0C
Monitor your servers, containers, and applications, in high-resolution and in real-time!
Jina19,103132 days ago2,421July 30, 202314apache-2.0Python
☁️ Build multimodal AI applications with cloud-native stack
Awesome Kubernetes14,249
6 days ago7otherShell
A curated list for awesome kubernetes sources :ship::tada:
Mlcourse.ai8,803
4 months ago4otherPython
Open Machine Learning Course
Doccano8,291
2 days ago32July 20, 2023269mitPython
Open source annotation tool for machine learning practitioners.
Cog5,601
17 hours ago106August 07, 2023296apache-2.0Python
Containers for machine learning
Fate5,20013 days ago30April 18, 2022786apache-2.0Python
An Industrial Grade Federated Learning Framework
Pipeline4,159
a year ago85July 18, 20171apache-2.0Jsonnet
PipelineAI Kubeflow Distribution
Deeplearningproject4,043
3 years ago3mitHTML
An in-depth machine learning tutorial introducing readers to a whole machine learning pipeline from scratch.
Orchest3,876
4 months ago19December 13, 2022125apache-2.0TypeScript
Build data pipelines, the easy way 🛠️
Alternatives To Docker Facebook Demucs
Select To Compare


Alternative Project Comparisons
Readme

Docker Facebook Demucs

This repository dockerizes Facebook Demucs to split music tracks into different tracks (bass, drums, voice, others).

Usage

Clone this repository

git clone https://github.com/xserrat/docker-facebook-demucs.git demucs

Split a music track

  1. Copy the track you want to split into the input folder (e.g., input/mysong.mp3).
  2. Execute demucs via the run job in the Makefile, specifying the track argument with only the name of the file:
make run track=mysong.mp3

This process will take some time the first time it is run, as the execution will:

  • Download the Docker image that is setup to run the facebook demucs script.
  • Download the pretrained models.
  • Execute demucs to split the track.

Subsequent runs will not need to download the Docker image or download the models, unless the model specified has not yet been used.

Options

The following options are available when splitting music tracks with the run job:

Option Default Value Description
gpu false Enable Nvidia CUDA support (requires an Nvidia GPU).
model demucs The model used for audio separation. See facebookresearch/demucs for a list of available models to use.
mp3output false Output separated audio in mp3 format instead of the default wav format.
splittrack Individual track to split/separate from the others (e.g., you only want to separate drums). Valid options are bass, drums, vocals and other. Other values may be allowed if the model can separate additional track types.

Example commands:

# Use the "fine tuned" demucs model
make run track=mysong.mp3 model=htdemucs_ft

# Enable Nvidia CUDA support and output separated audio in mp3 format
make run track=mysong.mp3 gpu=true mp3output=true

Run Interactively

To experiment with other demucs options on the command line, you can also run the Docker image interactively via the run-interactive job. Note that only the gpu option is applicable for this job.

Example:

make run-interactive gpu=true

Building the Image

The Docker image can be built locally via the build job:

make build

License

This repository is released under the MIT license as found in the LICENSE file.

Popular Docker Projects
Popular Machine Learning Projects
Popular Virtualization Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Docker
Machine Learning
Makefile