Using musdb for my own dataset
See original GitHub issueHi,
I have trained a Neural Network using musdb
. Now I want to do transfer learning on some more data that I have collected separately.
Is it possible to use musdb
API on my own dataset if I keep all my tracks in a similar fashion as musdb database?
Please help. Thanks
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:6 (3 by maintainers)
Top Results From Across the Web
The MUSDB18 dataset - GitHub Pages
The data in MUSDB18 is compiled from multiple sources: the DSD100 dataset, ... command to download X 7-second clips from MUSDB18 musdb =...
Read more >MUSDB18 - a corpus for music separation - Zenodo
It has been used as the official dataset in the professionally-produced music recordings task for SiSEC 2018, which is the international ...
Read more >demucs - Music Source Separation in the Waveform Domain
We provide an implementation of Demucs and Conv-Tasnet for music source separation on the MusDB dataset. They can separate drums, ...
Read more >Create your own dataset in 10 minutes! (Secret) - YouTube
In today's video we will be creating our own dataset for our AI. We will be using the jmd_imagescraper as the main function....
Read more >A Study of Transfer Learning in Music Source Separation
MUSDB [14] (the largest public dataset of high quality real-world recorded music) is only 15 hours long. In contrast, datasets for other computer...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Just additionally pass the
is_wav=True
flag. See documentation here https://sigsep.github.io/sigsep-mus-db/#musdb.DBno, it just parses the stems and reads from them. There is conversion tool to convert to separated wav files if you want this. So you can just create a folder called
your_dataset/train/track1
andmusdb
will find it it, if you use the--root your_dataset
.I would highly recommend to use wav or flac for training a DNN, since the STEMS is quite slow to decode.
In any case, if you use pytorch you really want to wait for our release 😃