PaperReading20200222
CanChen ggchen@mail.ustc.edu.cn
VS-GAE
- Motivation: With the publication of NAS101, researchers can do NAS research easily. The cell design problem is in fact a graph learning problem.Thus the paper proposes a auto-encoder based on graphs, uses it to learn the embedding space and generate new cells, namely, graphs.
- Method: The method is quite similar to the traditional auto-encoder method except using GNN as the encoder and the decoder. Plus, the graph generation process is a sequential process.
- Contribution: The paper is not very novel.
SimCLR
- Motivation: Current self-supervised tasks need some hand-designed pretext tasks and this paper proposes some data augmentations.By trying to find the invariant nature of these images, the model learn useful weights.
- Method: This paper proposes some data augmentation methods and adds a non-linear projection layer. The loss function is designed by sampling positive and negative pairs in the same batch. The positive pairs is an example image and its corresponding image under some purturbation.
- Contribution: This paper is helpful for engineering, showing us bigger batchsize and larger model lead to better results for SimCLR.
PaperReading20200222的更多相关文章
随机推荐
- java linux安装jdk,git, maven
jdk8下载地址:https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html mkdir ...
- java 编译java文件 以及生成可执行jar
1.新建java project: 2.src下新建包以及class文件: 3.打包: 5.选取目标mainclass 很关键决定jar是否可执行: 7.build jar : 8:artifact ...
- 【Android】数据存储和访问
一.SharedPreferences 2.SQLite
- 我的 Python 编码规范
python 文件的组成 为了便于描述,先上一个 demo #!/usr/bin/env python # -*- coding: utf-8 -*- """通常这里是关 ...
- 三分钟让你秒懂.Net生态系统
提到.Net的时候,大多数人的第一反应可能就是.Net Framework和Visual Studio..Net Framework的第一个版本发布与2002年2月13日,这对于科技发展日新月异的时代 ...
- Java Https双向验证
CA: Certificate Authority,证书颁发机构 CA证书:证书颁发机构颁发的数字证书 参考资料 CA证书和TLS介绍 HTTPS原理和CA证书申请(满满的干货) 单向 / 双向认证 ...
- 【原】 python中? : 三元表达式的使用介绍
python 三元表达式 之前学习的Python提到了对于类似C语言的三元条件表达式condition ? true_part : false_part,虽然Python没有三目运算符(?:),但也有 ...
- 【PAT甲级】1066 Root of AVL Tree (25 分)(AVL树建树模板)
题意: 输入一个正整数N(<=20),接着输入N个结点的值,依次插入一颗AVL树,输出最终根结点的值. AAAAAccepted code: #define HAVE_STRUCT_TIMESP ...
- 中国社交电商最新展望,S-KOL-C正突围而出
编辑 | 韩星 出品 | 于见(mpyujian) 通信技术.移动互联网的快速发展正加速国内电商平台的深度变革. 在这场以"社交"和"下沉市场"为关键词的电商之 ...
- 树莓派4B踩坑指南 - (9)安装Git和Docker
安装Git sudo apt-get install wget git-core 安装Docker curl -sSL https://get.docker.com | sh # 树莓派专属脚本福利, ...