-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Musdb model #16
Comments
If the experiment config is the same as the others, with just different input and output frequencies, im happy to give that a shot and make a pr, I just have no idea if there are other changes. |
Same here. Looking for the music upscaling model |
Hello, I would also be interested in running the model trained on music data. Are there any updates on this? |
@hayduck @yihaoch @pf-mpa, the author did answer this question in another issue: #5 (comment) They created a # @package dset
name: musdb-mixture-11-44
train: egs/musdb18hq/11025-44100_mixture/tr
valid: egs/musdb18hq/11025-44100_mixture/val
test: egs/musdb18hq/11025-44100_mixture/val It doesn't look like they used an experiment file directly, they instead specified the options as command line arguments like this: python train.py \
dset=musdb-mixture-11-44 \
experiment=<experiment_name> \
experiment.nfft=512 \
experiment.hop_length=64 \
experiment.lr_sr=11025 \
experiment.hr_sr=44100 \
epochs=696 \
eval_every=175 \
losses=[stft] \
experiment.batch_size=16 \
cross_valid_every=5 \
wandb.resume=false \
experiment.aero.spec_upsample=true \
experiment.upsample=false \
experiment.aero.enc_freq_attn=0 \
experiment.aero.norm_starts=2 \
experiment.aero.dconv_time_attn=2 \
experiment.aero.dconv_lstm=2 \
experiment.aero.freq_ends=4 \
experiment.aero.strides=[4,4,2,2] \
experiment.aero.channels=48 \
experiment.melgan_discriminator.ndf=16 \
+experiment.speech_mode=false \
cross_valid=false \
joint_evaluate_and_enhance=true \
ddp=true \
visqol=false \
I'm currently training another model, but I'll make a pr of a yaml file containing those experiment options when I get around to trying this again.
|
Hello,
I'm trying to use predict to improve some old music have, as was done here in your project:
Section Ⅴ: Examples for samples upsampled from 11.025kHz to 44.1kHz.
The model is trained on the train set of the MusDB-HQ dataset.
but I think I need a msudb experiment yaml file. I was able to download the checkpoint.tf, and tried to use the output naming convention to predict, but there is not a matching experiment yaml file I believe. The dset training hydra config would be nice too if possible.
Thanks much, and cool project.
The text was updated successfully, but these errors were encountered: