环境准备
2022年1月10日
一.
1.百度提供训练平台——aistudio
这次比赛尤其是初赛的大部分工作都是在百度的ai studio上完成的
这里我选学了一门基础课<高层API助你快速上手>
2.百度深度学习框架——飞桨(Paddlepaddle)的安装
3.参照飞桨(Paddlepaddle)官方文档:https://www.paddlepaddle.org.cn/documentation/docs/zh/guides/index_cn.html
安装PIP Conda ,这里是Anaconda介绍、安装及使用教程:https://www.jianshu.com/p/62f155eb6ac5
安装完成后,在控制台以命令行模式进行CUDA11.2的PaddlePaddle的安装(Windows用户请打开“Anaconda Prompt”)
下面为 CUDA11.2的PaddlePaddle
的安装命令。
python -m pip install paddlepaddle-gpu==2.2.1.post112 -f https://www.paddlepaddle.org.cn/whl/windows/mkl/avx/stable.html
遇到报错:
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
daal4py 2021.3.0 requires daal==2021.2.3, which is not installed.
按照提示手动安装
pip install daal4py
遇到报错
ERROR: Cannot uninstall 'TBB'. It is a distutils installed project and thus we
cannot accurately determine which files belong to it which would lead to
only a partial uninstall .
错误:无法卸载“ TBB”。 这是一个distutils安装的项目,因此我们
无法准确确定哪些文件属于该文件,这将导致
仅部分卸载
解决方法:将其忽略
pip install --ignore-installed TBB
#Successfully installed pyyaml-5.3.1
'安装完成后,再下载自己想要下载的包'
pip install daal4py
#Successfully installed iso8601-0.1.12 serial-0.0.97