Spijkervet / CLMR

Official PyTorch implementation of Contrastive Learning of Musical Representations

Home Page:https://arxiv.org/abs/2103.09410

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[ INFO ] MusicExtractorSVM: no classifier models were configured by default

pengbo-learn opened this issue · comments

what does this info mean? could I disable this info? it's quite annoying.

P.S. your code is really amazing, clean and enjoyable.

commented

Hi there!
I believe that's a message from the essentia package.

I think you can disable info messages with:

import warnings
warnings.simplefilter("ignore")

Hi there!
I believe that's a message from the essentia package.

I think you can disable info messages with:

import warnings
warnings.simplefilter("ignore")

Adding these lines won't work in linear_evaluation.py

However, I find the message roots in the HighLowPass in torchaudio_augmentations.init.py
Not a good solution but I comment the line

from .augmentations.high_low_pass import HighLowPass

since the function is not used.

Thanks a lot!

commented

Glad to hear you found a solution!