- 博客(11)
- 收藏
- 关注
转载 Windows 本地cmd 查看进程以及taskkill 显示没有此任务的实例在运行 杀不掉进程
原文链接:(22条消息) taskkill 显示没有此任务的实例在运行 杀不掉进程_Raxar81的博客-优快云博客
2023-04-09 20:16:58
5788
2
转载 UserWarning: The parameter ‘pretrained‘ is deprecated since 0.13 and will be removed in 0.15.
UserWarning: The parameter 'pretrained' is deprecated since 0.13 and will be removed in 0.15.
2022-11-01 15:28:28
12852
4
转载 如何解决RuntimeError: Expected all tensors to be on the same device, but found at least two devices, cp
如何解决RuntimeError: Expected all tensors to be on the same device, but found at least two devices, cpu
2022-07-11 11:10:37
448
转载 成功解决anaconda下安装报错:PackagesNotFoundError: The following packages are not available from current chann
成功解决anaconda下安装报错:PackagesNotFoundError: The following packages are not available from current channel
2022-06-24 14:18:10
857
转载 PackagesNotFoundError: The following packages are not available from current channels的解决办法
PackagesNotFoundError: The following packages are not available from current channels的解决办法
2022-06-24 14:16:42
669
转载 os.environ[‘CUDA_VISIBLE_DEVICES‘]指定GPU无法生效解决方案 (同时附上torch指定GPU总结)
os.environ[‘CUDA_VISIBLE_DEVICES‘]指定GPU无法生效解决方案 (同时附上torch指定GPU总结)
2022-06-24 13:11:38
2576
原创 Linux服务器中Pytorch训练过程可视化之tensorBoard安装使用教程
Linux服务器中Pytorch训练过程可视化之tensorBoard安装使用教程
2022-05-23 21:56:55
442
原创 Pytorch中的torch.cat()函数
cat是concatnate的意思:拼接,联系在一起。先说cat( )的普通用法如果我们有两个tensor是A和B,想把他们拼接在一起,需要如下操作:C = torch.cat( (A,B),0 ) #按维数0拼接(竖着拼)C = torch.cat( (A,B),1 ) #按维数1拼接(横着拼)复制代码>>> import torch>>> A=torch.ones(2,3) #2x3的张量(矩阵)
2022-03-21 20:06:19
6771
原创 pycharm工作目录修改
点击file->Settings->Project->Project structure 然后把Excluded红色的Excluded Folders目录给删掉并添加自己想要的目录。
2022-03-21 16:31:16
3271
原创 关于OMP: Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized.错误解决方法
网上查找相关解决方案,一般采用以下方式:import osos.environ["KMP_DUPLICATE_LIB_OK"]="TRUE本问题出现主要是因为torch包中包含了名为libiomp5md.dll的文件,与Anaconda环境中的同一个文件出现了某种冲突,所以需要删除一个。1.删除Anaconda文件夹下的libiomp5md.dll这个文件2.但如果是在某个python环境下,则需要删除的是该环境下的对应文件。也就是:如果在Anaconda的base环境下:删
2022-03-20 18:05:15
15928
17
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人