-1

我正在尝试从以下站点运行基本特征提取代码:
musicinformationretrieval
当我尝试运行以下代码行时:

kick_filepaths, snare_filepaths = stanford_mir.download_samples(collection="drum_samples_train")

它显示以下错误消息:

---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-3-7c764e7836ee> in <module>()
----> 1 kick_filepaths, snare_filepaths = stanford_mir.download_samples(collection="drum_samples_train")

C:\Users\dell\Desktop\stanford-mir-gh-pages\stanford_mir.py in download_samples(collection, download)
     89                 for i in range(1, 11):
     90                     filename = '%s_%02d.wav' % (drum_type, i)
---> 91                     urllib.urlretrieve('http://audio.musicinformationretrieval.com/drum_samples/%s' % filename,
     92                                        filename=os.path.join(collection, filename))
     93         kick_filepaths = [os.path.join(collection, 'kick_%02d.wav' % i) for i in range(1, 11)]

AttributeError: module 'urllib' has no attribute 'urlretrieve'

请帮我解决这个问题。

4

1 回答 1

2

看来你应该使用 Python 2 而不是 3。在 stanford_mir 的指令中有一行:

  1. 如果您是新手,最简单的解决方案是下载并安装适用于 Python 2 (2.7) 的 Anaconda,而不是 Python 3。

您还可以在此处阅读为什么它不适用于 Python 3 。

升级版:

对于使用 Python 3,您可以在使用 lib 之前尝试添加代码:

import sys

if sys.version_info[0] >= 3:
    from urllib.request import urlretrieve
else:
    # Not Python 3 - today, it is most likely to be Python 2
    # But note that this might need an update when Python 4
    # might be around one day
    from urllib import urlretrieve

UPD2:urlretrieve 导入没有帮助)

于 2017-11-18T09:16:13.530 回答