欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

报错:TypeError: unexpected keyword argument 'autotuneValidationFile'

程序员文章站 2022-03-04 13:33:39
...

报错:TypeError: unexpected keyword argument 'autotuneValidationFile'日萌社

人工智能AI:Keras PyTorch MXNet TensorFlow PaddlePaddle 深度学习实战(不定时更新)


 

报错:TypeError: unexpected keyword argument 'autotuneValidationFile'
解决:pip install fasttext这种在线下载安装的版本为0.9.1会报错,需要使用github下载官方安装包到本地安装才可以,
      虽然在线下载安装和github下载安装都会是显示同一个版本的0.9.1,但就是在线下载安装的会运行代码报错,
      而github下载官方安装包到本地安装就不会运行报错

git clone https://github.com/facebookresearch/fastText.git
cd fastText
# 使用pip安装python中的fasttext工具包
sudo pip install .