Closed realkris closed 3 years ago
I think it’s easiest to start from this recipe: https://github.com/asteroid-team/asteroid/tree/master/egs/librimix/DCCRNet
F is an alias convention for torch.nn.functional
.
CL is the only variant available because nobody implemented the others yet.
What modification to the channels do you want to make? Input, output, or inner (ie. model size)?
Thank you for your reply! yes, model size, I want to reduce the size of model cause I want to run it on portable devices. is it correct to change the kernel_num from like [32, 64, 128, 256, 256, 256] to [16, 32, 64, 128, 256, 256]?
You’ll have to try. Nobody knows. But doesn’t look crazy wrong.
OK, thank you for your help, I'll continue trying it!
This project is really helpfull for noobs like me ! I want to make a DCCRN model(on DNS-Challenge official dataset) for class project as the noise cancellation module. Here's What I've done now. I modified the model.py script in egs/dns-challenge/baseline according to #278, but I have several questions that confused
So basically I just modified the model.py scripy and dataset folder in baseline/conf.yml. Will that be enough? My English is not good, maybe I missed something? or could you guys just give me an example.(I will train on the official DNS dataset) Thank you for your help!