我安装了Jupyter notebook和TuriCreate,然后在jupyter notebook中导入了Turicreate。之后,为了使用turicreate,我写道:
sf = turicreate.SFrame('people-example.csv')`(people-example.csv是我想使用的文件),但它显示以下错误:
NameError Traceback (most recent call last)
<ipython-input-15-bcf297396ba4> in <module>
----> 1 sf = turicreate.SFrame('people-example.csv')
NameError: name 'turicreate' is not defined请帮我弄一下这个。谢谢你。
发布于 2020-10-02 18:04:03
要解决此错误,您需要先导入turicreate。要导入turicreate,请使用以下命令:
import turicreate as tchttps://stackoverflow.com/questions/62611427
复制相似问题