上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 64 下一页
摘要: 分类决策树 CSDN: 决策树(decision tree)(一)——构造决策树方法 (推荐) CSDN: 决策树(decision tree)(二)——剪枝 (推荐) CSDN: 决策树(decision tree)(三)——连续值处理 (推荐) CSDN: 决策树及决策树生成与剪枝 知乎:决策树 阅读全文
posted @ 2021-12-27 19:05 Picassooo 阅读(78) 评论(0) 推荐(0) 编辑
摘要: tmux 窗口卡死,键盘输入字符没有反应,这时按 Ctrl+C就可以解决。 阅读全文
posted @ 2021-12-25 21:19 Picassooo 阅读(2326) 评论(0) 推荐(1) 编辑
摘要: 同时按下键盘四角的4个键可以强制恢复出厂设置:Esc + Ctrl(左边的) + Delete + 方向右键→ 5秒后,键盘自动恢复出厂设置。 然后,windows键就可以正常用了。 阅读全文
posted @ 2021-12-24 12:14 Picassooo 阅读(5560) 评论(0) 推荐(0) 编辑
摘要: 程序示例: import torch from PIL import Image import torchvision.transforms as transforms def cutout(input): input[:, 100:200, 100:200] = 0.0 # 注意:这是in-pla 阅读全文
posted @ 2021-12-16 11:08 Picassooo 阅读(249) 评论(0) 推荐(0) 编辑
摘要: Python循环遍历列表删除元素 阅读全文
posted @ 2021-12-05 20:41 Picassooo 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 程序示例: from torchvision import transforms from PIL import Image import torch def gaussian(img, mean, std): c, h, w = img.shape noise = torch.randn([c, 阅读全文
posted @ 2021-12-03 22:04 Picassooo 阅读(1105) 评论(0) 推荐(0) 编辑
摘要: 示例代码: from torchvision import transforms from PIL import Image img_jpg = Image.open('C:/Users/admin/Desktop/bird.jpg').convert('RGB') # convert()函数,用于 阅读全文
posted @ 2021-12-02 15:13 Picassooo 阅读(2646) 评论(0) 推荐(0) 编辑
摘要: Python创建包,导入包 阅读全文
posted @ 2021-12-01 16:33 Picassooo 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 特征可视化技术(CAM) Pytorch可视化神经网络热力图(CAM) 阅读全文
posted @ 2021-11-22 17:01 Picassooo 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 图像降噪算法——DnCNN / FFDNet / CBDNet / RIDNet / PMRID / SID 阅读全文
posted @ 2021-11-22 16:52 Picassooo 阅读(495) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 64 下一页