
python
shu616048151
求其上者得其中,得其中者得其下。
展开
-
cuda_error_launch_failed: unspecified launch failure
问题:error polling for event status: failed to query event: cuda_error_launch_failed: unspecified launch failure问题排查:之前我的电脑在深度学习的时候,每次训练好几个epoch之后直接自动退出程序无法无法继续训练,不可能是代码的问题,因为代码能够在ubuntu上直接运行。有人说是显卡显存不足,但是有时候能够训练完整个网络,并且查询GPU内存发现训练的时候没有使用内存。解决办法:通过查阅资料发现原创 2021-11-25 15:11:08 · 3992 阅读 · 0 评论 -
linux使用anaconda安装python包
1创建环境conda create -n py36 python=3.62激活环境source activate py363安装包安装包之前,必须激活环境,否则会安装到root环境下3.1 conda方式conda install tensorflow(或者conda install tensorflow==version)3.2 pip方式conda使用国...原创 2020-01-10 11:52:48 · 8924 阅读 · 2 评论