上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: 不更新内核 https://blog.csdn.net/carina_cao/article/details/88864742 阅读全文
posted @ 2020-01-20 22:16 Gelthin 阅读(437) 评论(0) 推荐(0) 编辑
摘要: 理解end to end 和 two-step methods 所谓的 end to end 即是 不用分为两步, 见论文 CVPR-17 Attend in groups: page2 Masking NIPS-18 page 1 阅读全文
posted @ 2020-01-16 19:32 Gelthin 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 1.保存图片时设置 pad_inches 去掉周围空白部分 在保持图片时,设置 bbox_inches 为 tight 可以去掉图片周围的空白部分。这一命令广为人知 但若是在插图到论文,想要进一步放大图片,以便更清晰,还可以进一步使得图片的空白部分更少: 这里 pad_inches 相当于在图片元素 阅读全文
posted @ 2020-01-15 10:36 Gelthin 阅读(473) 评论(0) 推荐(0) 编辑
摘要: 对分类问题,设 $y\in\{ 1, 1\}$, $\mathop{sign}(f(x))$ 代表分类器, 定义 $z = yf(x)$ 为 margin 值。 一般来说, margin loss function 代表只需输入 margin 值即可输出 loss 的 function. 也即 $\ 阅读全文
posted @ 2020-01-07 19:58 Gelthin 阅读(3633) 评论(0) 推荐(0) 编辑
摘要: ICCV 17 learning from Noisy labels with distillation MixMatch ReMixMatch domain adaptation survey 提及此 AISTAT 2020: confident learning 阅读全文
posted @ 2020-01-06 23:46 Gelthin 阅读(187) 评论(0) 推荐(0) 编辑
摘要: with open(r'./record.pkl', 'rb') as inp: res = [] try: res.append(pickle.load(inp)) except: noise_labels, true_labels = res[-2:] 有 bug, 但未测出来。 代码来源于 p 阅读全文
posted @ 2020-01-05 11:41 Gelthin 阅读(233) 评论(0) 推荐(0) 编辑
摘要: Linux 教程|菜鸟教程 非常好的网站 【man (manual)】此命令可以打印出其他命令的使用方法 man + program 显示用法,比如 man df 【help】查看帮助文档 ls --help # 显示 ls 的帮助信息 help ls # ... 【Bash 键盘快捷键】 ctrl 阅读全文
posted @ 2020-01-04 11:09 Gelthin 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 1. 大幅度提升 Pytorch 的训练速度 device = torch.device("cuda" if torch.cuda.is_available() else "cpu") torch.backends.cudnn.benchmark = True 但加了这一行,似乎运行结果可能会存在细 阅读全文
posted @ 2020-01-04 09:35 Gelthin 阅读(1834) 评论(0) 推荐(0) 编辑
摘要: dtype 可用于查看数据类型 astype 可用于修改数据类型,不过并非就地修改 astype 可以相当于 np.int(), np.float() 用 dtype 修改数据类型,会出现 bug, dtype 更像是以另一种方式来解读2进制串 阅读全文
posted @ 2019-12-29 17:55 Gelthin 阅读(662) 评论(0) 推荐(0) 编辑
摘要: 1.为了对比别人的方法,需要配置的环境为:Python 3.6.4,Keras 2.1.6,Tensorflow 1.7.0 在自己电脑上,anaconda3, 直接用原环境下的 tensorflow-gpu1.13.1 发现最开始的部分代码段可以运行,但无法保存model 的代码段不起作用,造成错 阅读全文
posted @ 2019-12-24 23:37 Gelthin 阅读(614) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页