会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
四叶草女孩
给过去打分,会打多少分?
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
5
6
7
8
9
10
11
12
13
···
16
下一页
2020年10月13日
GAN网络的一些loss函数
该文被密码保护。
阅读全文
posted @ 2020-10-13 10:11 皮卡皮卡妞
阅读(228)
评论(0)
推荐(0)
编辑
pytorch,tensor2im,im2tensor
摘要: def tensor2im(image_tensor, imtype=np.uint8, normalize=True): image_numpy = image_tensor.cpu().float().detach().numpy() if normalize: image_numpy = (i
阅读全文
posted @ 2020-10-13 10:02 皮卡皮卡妞
阅读(567)
评论(0)
推荐(0)
编辑
2020年10月10日
图像处理模糊+python
摘要: import os import numpy as np import cv2 old_ng='./train_B/' new_wg_dir='./clear/train_A/' new_ng_dir='./clear/train_B/' if not os.path.exists(new_wg_d
阅读全文
posted @ 2020-10-10 17:25 皮卡皮卡妞
阅读(362)
评论(0)
推荐(0)
编辑
RuntimeError: Failed to export an ONNX attribute, since it's not constant, pleas
摘要: pytorch1.1.0+python 参考博客https://blog.csdn.net/Cxiazaiyu/article/details/91129657 降低版本到: pytorch1.0.1错误消失,但是出现新的错误:
阅读全文
posted @ 2020-10-10 11:20 皮卡皮卡妞
阅读(801)
评论(0)
推荐(0)
编辑
Exception has occurred: AttributeError 'torch._C.Value' object has no attribute 'uniqueName'
摘要: pytorch1.3.0+python 问题:pytorch版本过高 解决: https://download.pytorch.org/whl/cu100/torch_stable.html 下载低版本的pytorch,这里下载的是1.1.0 问题解决。
阅读全文
posted @ 2020-10-10 09:21 皮卡皮卡妞
阅读(829)
评论(0)
推荐(0)
编辑
2020年10月9日
window10安装pytorch
摘要: 1、nvcc -V 查看cuda版本 2、查看pytorch版本 3、安装pytorch pip install torch==1.0.1 -f https://download.pytorch.org/whl/torch_stable.html 4、安装torchvision pip instal
阅读全文
posted @ 2020-10-09 17:22 皮卡皮卡妞
阅读(172)
评论(0)
推荐(0)
编辑
2020年9月25日
RuntimeError: Trying to backward through the graph a second time, but the buffers have already been freed. Specify retain_graph=True when calling backward the first time.
摘要: 报错: 修改: model.module.optimizer_G.zero_grad() loss_G.backward() model.module.optimizer_G.step() 为: model.module.optimizer_G.zero_grad() loss_G.backward
阅读全文
posted @ 2020-09-25 15:47 皮卡皮卡妞
阅读(2961)
评论(0)
推荐(0)
编辑
vscode常用快捷键
摘要: 一、vs code 的常用快捷键 1、注释: a) 单行注释:[ctrl+k,ctrl+c] 或 ctrl+/ b) 取消单行注释:[ctrl+k,ctrl+u] (按下ctrl不放,再按k + u) c) 多行注释:[alt+shift+A] d) 多行注释:/** 2、移动行:alt+up/do
阅读全文
posted @ 2020-09-25 15:16 皮卡皮卡妞
阅读(496)
评论(1)
推荐(1)
编辑
pytorch中.pth文件转成.bin的二进制文件
摘要: model_dict = torch.load(save_path) fp = open('model_parameter.bin', 'wb') weight_count = 0 num=1 for k, v in model_dict.items(): print(k,num) num=num+
阅读全文
posted @ 2020-09-25 15:13 皮卡皮卡妞
阅读(5184)
评论(0)
推荐(0)
编辑
AttributeError: module 'torch.jit' has no attribute 'get_trace_graph
摘要: pytorch+python 错误: 纠正: self.trace, _ = torch.jit.get_trace_graph(self.model, args=(self.x,)) 为: self.trace, _ = torch.jit._get_trace_graph(self.model,
阅读全文
posted @ 2020-09-25 15:09 皮卡皮卡妞
阅读(3159)
评论(0)
推荐(0)
编辑
上一页
1
···
5
6
7
8
9
10
11
12
13
···
16
下一页
公告