上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 36 下一页

2021年6月11日

Pytorch中出现的奇怪错误

摘要: 1. Pycharm error Process finished with exit code -1073740791 (0xC0000409) 2. RuntimeError: CUDA error: an illegal memory access was encountered 阅读全文

posted @ 2021-06-11 15:56 那抹阳光1994 阅读(141) 评论(0) 推荐(0) 编辑

Pytorch遇到的错误解决方法

摘要: Pytorch遇到的错误解决方法 1. pytorch运行错误:RuntimeError: cuDNN error: CUDNN_STATUS_INTERNAL_ERROR 解决方法: 代码中添加: torch.cuda.set_device(0) 2. 训练RNN网络loss出现Nan解决办法 ( 阅读全文

posted @ 2021-06-11 15:45 那抹阳光1994 阅读(2235) 评论(0) 推荐(0) 编辑

训练RNN网络loss出现Nan解决办法

摘要: (1) 梯度爆炸的原因可以通过梯度裁决解决 GRAD_CLIP = 5 loss.backward() torch.nn.utils.clip_grad_norm_(model.parameters(), GRAD_CLIP) optimizer.step() (2)testModel和evalua 阅读全文

posted @ 2021-06-11 15:37 那抹阳光1994 阅读(525) 评论(0) 推荐(0) 编辑

RuntimeError: CUDA error: an illegal memory access was encountered

摘要: 莫名其妙的o(╯□╰)o 阅读全文

posted @ 2021-06-11 14:40 那抹阳光1994 阅读(1648) 评论(0) 推荐(0) 编辑

2021年6月10日

Process finished with exit code -1073740791 (0xC0000409)

摘要: 再次遇到Process finished with exit code -1073740791 (0xC0000409)问题 …… 可能是pycharm内存设置的问题? python中关于Process finished with exit code -1073740791 (0xC0000409) 阅读全文

posted @ 2021-06-10 17:27 那抹阳光1994 阅读(4368) 评论(1) 推荐(0) 编辑

2021年5月28日

Dispersion

摘要: Dispersion is a statistical term that describes the size of the distribution of values expected for a particular variable and can be measured by sever 阅读全文

posted @ 2021-05-28 14:40 那抹阳光1994 阅读(59) 评论(0) 推荐(0) 编辑

2021年5月10日

pycharm下使用matpltlib绘图复用figure无法更新画布问题

摘要: 发现pycharm下使用matpltlib绘图重复使用一个figure无法对画布内容进行更新。 plt.draw()方法用于更新绘制的内容,但是pycharm中没反应。 解决方法: import matplotlib as mpl #mpl.use('Agg') # non-GUI backend 阅读全文

posted @ 2021-05-10 09:12 那抹阳光1994 阅读(766) 评论(0) 推荐(0) 编辑

2021年4月29日

matlab绘图充满图窗

摘要: 通常以下命令能满足要求: set(gca,'LooseInset', get(gca,'TightInset')) 但有时上述命令会覆盖一些元素,此时手动控制边距: 宽度方向空白区域0.03, 高度方向空白区域0.05 set(gca,'looseInset',[0 0 0.03 0.05]); 阅读全文

posted @ 2021-04-29 10:41 那抹阳光1994 阅读(1768) 评论(0) 推荐(0) 编辑

2021年4月27日

win10系统复制 粘贴功能失效

摘要: 运行cmd.exe /c "echo off | clip" 来清空剪切板 https://answers.microsoft.com/zh-hans/windows/forum/all/win10%E7%B3%BB%E7%BB%9F%E5%A4%8D%E5%88%B6/049148b4-d9b6- 阅读全文

posted @ 2021-04-27 23:07 那抹阳光1994 阅读(174) 评论(0) 推荐(0) 编辑

matlab遍历文件夹

摘要: 遍历文件加下指定后缀的文件 通过fullfile + dir命令完成 dirOutput = dir(fullfile(path,'*.fig')); % 遍历文件夹下所有.fig文件 提取文件名 fileNames = {dirOutput.name}; % 得到带后缀的文件名cell 将文件名与 阅读全文

posted @ 2021-04-27 14:49 那抹阳光1994 阅读(1301) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 36 下一页

导航