12 2021 档案
摘要:知乎:机器学习、深度学习等人工智能技术在工业界的应用状况是怎样的?人力供需状况如何?
阅读全文
摘要:深度聚类算法研究综述(A Survey of Deep Clustering Algorithms)
阅读全文
摘要:分类决策树 CSDN: 决策树(decision tree)(一)——构造决策树方法 (推荐) CSDN: 决策树(decision tree)(二)——剪枝 (推荐) CSDN: 决策树(decision tree)(三)——连续值处理 (推荐) CSDN: 决策树及决策树生成与剪枝 知乎:决策树
阅读全文
摘要:tmux 窗口卡死,键盘输入字符没有反应,这时按 Ctrl+C就可以解决。
阅读全文
摘要:同时按下键盘四角的4个键可以强制恢复出厂设置:Esc + Ctrl(左边的) + Delete + 方向右键→ 5秒后,键盘自动恢复出厂设置。 然后,windows键就可以正常用了。
阅读全文
摘要:程序示例: import torch from PIL import Image import torchvision.transforms as transforms def cutout(input): input[:, 100:200, 100:200] = 0.0 # 注意:这是in-pla
阅读全文
摘要:Python循环遍历列表删除元素
阅读全文
摘要:程序示例: from torchvision import transforms from PIL import Image import torch def gaussian(img, mean, std): c, h, w = img.shape noise = torch.randn([c,
阅读全文
摘要:示例代码: from torchvision import transforms from PIL import Image img_jpg = Image.open('C:/Users/admin/Desktop/bird.jpg').convert('RGB') # convert()函数,用于
阅读全文