
环境
F_aF_a
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
magma_getdevice_arch: MAGMA not initialized (call magma_init() first) or bad device
import torchtorch.__version__ # '1.9.1+cu102'A = torch.randn(2,3,3).cuda()B = torch.randn(2,3,4).cuda()X = torch.linalg.solve(A, B)Error in magma_getdevice_arch: MAGMA not initialized (call magma_init() first) or bad deviceError in magma_getdevice_a原创 2021-11-18 10:12:24 · 1166 阅读 · 2 评论 -
anaconda下安装torch_geometric
官方文档安装的时候出了很多错误,最后还是按照官网文档才安装好了文章目录pytorch的版本CUDA的版本安装包pytorch的版本确定pytorch的版本,最低1.4.0python -c "import torch; print(torch.__version__)">>> 1.8.0CUDA的版本确定cuda的版本python -c "import torch; print(torch.version.cuda)">>> 10.2安装包pi原创 2021-08-05 09:41:29 · 2058 阅读 · 2 评论 -
Linux安装mongodb数据库 ‘mongo’ not found, but can be installed with:
Linux安装mongodb数据库最新版(全网最细)Command ‘mongo’ not found, but can be installed with:sudo apt install mongodb-clients原创 2021-11-02 09:19:03 · 1499 阅读 · 1 评论 -
设置SSH服务器的大文件夹下导入项目后运行
新加入模块之后,需要将其打开为新项目设置Tools/Deployment/Configuration设置File/settings/python Interpreter原创 2021-10-25 15:03:55 · 140 阅读 · 0 评论 -
使用git命令行将本地仓库代码上传到仓库
(超详细)使用git命令行将本地仓库代码上传到github或gitlab远程仓库cd 本地工程根目录git init //这个目录就变成了git可以管理的仓库git add .git commit -m "注释说明"git remote add origin https://XXXX.gitgit pull --rebase origin master git push -u origin master...转载 2021-10-21 09:06:54 · 225 阅读 · 0 评论 -
pycharm的调试面板
原创 2019-01-08 14:47:37 · 622 阅读 · 2 评论 -
使用Pycharm进行代码对比的方法
原创 2019-01-09 12:51:11 · 6983 阅读 · 0 评论 -
kaggle下解压.7z压缩文件
%pip install py7zrimport py7zra = py7zr.SevenZipFile(r'../input/cifar-10/train.7z','r')a.extractall(path=r'./')a.close()原创 2021-04-27 15:32:55 · 844 阅读 · 2 评论 -
anaconda 安装GPU版本的pytorch
查看显卡nvidia-smi去官网查找命令行官网,找最接近的一个版本anaconda命令行输入即可原创 2021-07-30 10:20:17 · 183 阅读 · 0 评论