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的更多相关文章
随机推荐
- css 属性值 calc (目前只了解部分)
移动端页面,有如下图的需求: 实现效果: 实现 css 代码: .list {/*父级*/ border: 1px solid #E9EAEA; border-radius: 2px; backgro ...
- python setattr()、getattr()、hasattr() 函数用法介绍
一.函数介绍 在动态检查对象是否包含某些属性(包括方法〉相关的函数有如下几个: hasattr(object,name):检查 object 对象是否包含名为 name 的属性或方法. getattr ...
- 如何让div中的img图片显示在div下面。
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>& ...
- Jmeter 如何发起一个post请求
举例平台:https://www.juhe.cn/docs/api/id/65 前提条件: 1)要在聚合网站注册实名认证才可以收到Key,用于Get请求的参数数值 2)Jmeter本地安装好 3.这是 ...
- 牛客跨年AK场-小sum的假期安排
链接:https://ac.nowcoder.com/acm/contest/3800/G来源:牛客网 题目描述 小 sun 非常喜欢放假,尤其是那种连在一起的长假,在放假的时候小 sun 会感到快乐 ...
- 【Fine学习笔记】python 文件l操作方法整理
python脚本可以对excel进行创建.读.写.保存成指定文件名,保存到指定路径的操作.整理了以下处理方法: 首先区别几个操作方式: "r" 以读方式打开,只能读文件 , 如 ...
- vue 和 jquery混合使用
有时候只要想到要用的 vue.js 的时候就会惯性的想起用vue-cli手脚架搭建一个项目,但是有时候的业务场景并不适合用vue-cli手脚架,这个时候使用vue+jquery混合使用,把他们的优点结 ...
- PLSQL报错: ORA-12170:TNS connect timeout occurred
本人的问题已解决,先在安装oracle的服务器上黑窗口输入tnsping,提示说no listener,这是监听服务没有打开. 打开服务后还是不行,最后原因是服务器的网络有防火墙的问题,关掉防火墙连接 ...
- 「JSOI2010」排名
「JSOI2010」排名 传送门 看到先后顺序限制和字典序,很容易想到拓扑排序 + 贪心. 考虑具体做法: 对于第一问: 我们开一个大根堆来代替队列,然后从大到小构造出各个元素的排名. 我们连边 \( ...
- CSS各种小技巧
/* *背景的透明度设置 */ -moz-opacity: 0.8; opacity:.80; filter: alpha(opacity=80); 待续...