Pytorch Chatbox教程:列表索引超出范围

时间:2018-11-12 12:02:45

标签: python python-3.x pytorch chatbot

我是Pytorch的新手,所以我尝试使用chatbox tutorial,但是当我尝试运行chatbox-tutorial.py(上面提供的文件链接)时,出现以下错误:

> Start preparing training data ... Reading lines... Read 442563 >
> sentence pairs Traceback (most recent call last): File >
> "chatbot_tutorial.py", line 403, in <module> > voc, pairs =
> loadPrepareData(corpus, corpus_name, datafile, save_dir) File
> "chatbot_tutorial.py", line 391, in loadPrepareData > pairs =
> filterPairs(pairs) File "chatbot_tutorial.py", line 384, in
> filterPairs > return [pair for pair in pairs if filterPair(pair)] File
> "chatbot_tutorial.py", line 384, in <listcomp> > return [pair for pair
> in pairs if filterPair(pair)] File "chatbot_tutorial.py", line 380, in
> filterPair > return len(p[0].split(' ')) < MAX_LENGTH and
> len(p[1].split(' ')) < MAX_LENGTH IndexError: list index out of range

我尝试使用.ipynb文件,但遇到了类似的问题,而我在Anaconda的内核不断死去。

我正在使用:

  • Windows 10
  • Python 3.6.5
  • Conda 4.5.11

编辑: 我刚刚意识到Pytorch中的所有教程都需要最新的预览版,而Windows尚不可用。将尝试在Ubuntu上并根据需要编辑此问题。

0 个答案:

没有答案