Neil Zeghidour
Neil Zeghidour
https://github.com/mpariente/asteroid/blob/aa3485bc57ef1f21d37cff43fce69cc3c9c94b1c/egs/wham/WaveSplit/wavesplit.py#L143 Wavesplit uses standard convolutions, not separable (separable worked worse). https://github.com/mpariente/asteroid/blob/aa3485bc57ef1f21d37cff43fce69cc3c9c94b1c/egs/wham/WaveSplit/wavesplit.py#L166 Before the residual stacks there is a single convolution layer with kernel size 4, 512 filters, no dilation, no...
Hi, Thanks for providing your implementation of Conv-Tasnet. I trained a model and when I evaluated it on the test set (using run.sh) I was surprised to only see 2618...
**Short description** Loading GTZAN in google Colab does not work because the connection times out. **Reproduction instructions** ```python import tensorflow_datasets as tfds dataset = tfds.load('gtzan', split='train') ``` Error message: ```...
Hi, I'm trying to create the TUH Artifact Dataset as follows: ``` dataset = TUHEEGArtifactDataset('~/Documents/eeg/tuh_artifact_eeg/edf') dataset.set_cache_manager(PickleCache('~/Documents/eeg/export')) preprocessing = Pipeline([ CommonChannelSet(), LowestFrequency(), ToDataframe(), MinMaxCentralizedNormalization(), ToNumpy() ]) dataset = dataset.set_pipeline(preprocessing).load() data, labels...