ModuleNotFoundError:没有名为"fastai.nlp"的模块



我尝试导入以下模块

from fastai.nlp import *
from fastai.model import Stepper

但是,我得到以下错误

ModuleNotFoundError: No module named 'fastai.nlp'
ModuleNotFoundError: No module named 'fastai.model'

我已经安装了pip install fastai.

提前感谢您的帮助。

fastai库不包含steppermodel模块。对于NLP,您使用fastai.text模块,而不是fastai.nlp。下面是一个教程,解释如何:

https://docs.fast.ai/tutorial.text.html

您在哪里找到包含您要运行的两行代码?它不是快速的v1或v2代码。也许是从第二部分课程开始的,在那里我们从头开始重写了fastai之类的东西。https://course19.fast.ai/part2。如果是的话,你需要使用那里的笔记本。

相关内容

  • 没有找到相关文章

最新更新