Amine SEHILI
Amine SEHILI
Hi, could you share the error message you got?
Hello, This is due to matplotlib version mismatch, test images were generated with matplotlib 3.2.1 and plotting tests will only pass with this or older versions (also check [travis config](https://github.com/amsehili/auditok/blob/master/.travis.yml)).
Nice, thanks for sharing! I expected webrtc to perform much better than auditok given that it uses GMM models trained on large speech data. auditok's detection algorithm is as simple...
Hi, There's apparently a problem with you audio file, standard `wave` module cannot load it: ``` wave.Error: unknown format: 3 ``` Please make sure that this a valid wav file.
`` tag has been added, other itunes tag should be easier to add. Will fix this as soon as I can, please feel free to contribute.
I've started testing an implementation of a solution like the one suggested by @agramfort. All you need to do is make the hyper-parameters explicitly appear in your estimator's `__init__`. To...
Hello, It's possible to extract media artist, just the same way the title is extracted in [get_title](https://github.com/amsehili/genRSS/blob/8c7feb58cddcad8e1f45970aba65c5d00ad4b7d4/util.py#L213). So using `eyed3` you can do `meta.tag.artist` instead of `meta.tag.title` and with `mutagen`...
@msho-nb how about passing an optimizer instance instead of a string? ```python from tensorflow.keras.optimizers import Adam optimizer = Adam(learning_rate=0.01) ae = AutoEncoder(..., optimizer=optimizer) ```
We should switch to pytest for the next release.
We can keep them as they're part of the documentation. The title (original: *Get rid of doctests, use pytest*) can be confusing as the goal is to rely on pytest...