You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When taggram, tags = extractor(file_name, model='MTT_musicnn', extract_features=False) is run, this warning is repeated multiple times:
WARNING: Entity <bound method Dropout.call of <tensorflow.python.layers.core.Dropout object at 0x7f9a3e22e240>> could not be transformed and will be executed as-is. Please report this to the AutgoGraph team. When filing the bug, set the verbosity to 10 (on Linux, `export AUTOGRAPH_VERBOSITY=10`) and attach the full output. Cause: converting <bound method Dropout.call of <tensorflow.python.layers.core.Dropout object at 0x7f9a3e22e240>>: AssertionError: Bad argument number for Name: 3, expecting 4
Based on the FAQ, there seems to be a problem with librosa soundread and audioread
Running the vgg_example yields the same warning, but outputs the correct taggram
However, when I switched musicnn_example to opening filename='./audio/TRWJAZW128F42760DD_test.mp3' from './audio/joram-moments_of_clarity-08-solipsism-59-88.mp3', the warning is still raised, but a taggram does show. Perhaps this is a problem with my version of librosa, because it seems that 'joram...mp3' cannot be opened. Openning 'TRW...mp3' yields me the warning /home/kevin/.local/lib/python3.6/site-packages/librosa/core/audio.py:162: UserWarning: PySoundFile failed. Trying audioread instead. warnings.warn("PySoundFile failed. Trying audioread instead.") which is consistent with the FAQ.
However, the Autgograph warning seems to be a different problem altogether.
The text was updated successfully, but these errors were encountered:
botkevin
changed the title
Running musicnn_test.ipynb yields warning
Running musicnn_test.ipynb throws exception
Aug 4, 2020
When
taggram, tags = extractor(file_name, model='MTT_musicnn', extract_features=False)
is run, this warning is repeated multiple times:and am given error:
Based on the FAQ, there seems to be a problem with librosa soundread and audioread
Running the vgg_example yields the same warning, but outputs the correct taggram
However, when I switched musicnn_example to opening
filename='./audio/TRWJAZW128F42760DD_test.mp3'
from'./audio/joram-moments_of_clarity-08-solipsism-59-88.mp3'
, the warning is still raised, but a taggram does show. Perhaps this is a problem with my version of librosa, because it seems that'joram...mp3'
cannot be opened. Openning'TRW...mp3'
yields me the warning/home/kevin/.local/lib/python3.6/site-packages/librosa/core/audio.py:162: UserWarning: PySoundFile failed. Trying audioread instead. warnings.warn("PySoundFile failed. Trying audioread instead.")
which is consistent with the FAQ.However, the Autgograph warning seems to be a different problem altogether.
The text was updated successfully, but these errors were encountered: