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的更多相关文章

随机推荐

  1. React项目中遇到的那些坑

    1.react中路由跳转后页面不置顶问题 问题: 从页面A跳转到页面B,页面A滚动到中间位置,跳转后页面B也会在中间位置 解决方法:在顶部组件的生命周期中进行判断,例如 componentWillRe ...

  2. VBA 学习笔记 - 判断语句、循环

    判断语句 大部分和 Lua 差不多,多了一个 Switch 语句 循环 For 循环 多次执行一系列语句,缩写管理循环变量的代码. For i = start To end [Step X]...Ne ...

  3. combotree(组合树)的使用

    一.前言: 组合树(combotree)把选择控件和下拉树结合起来.它与组合框(combobox)相似,不同的是把列表替换成树组件.组合树(combotree)支持带有用于多选的树状态复选框的树. 二 ...

  4. UIImageView的API

    - (instancetype)initWithImage:(UIImage *)image; 返回使用指定图像初始化的图像视图. - (instancetype)initWithImage:(UII ...

  5. Python语言——列表生成式

    生成[1x1, 2x2, 3x3, ..., 10x10]列表: >>> L = [] >>> for x in range(1, 11):... >> ...

  6. HttpClient和HtmlUnit的比较总结以及使用技巧

    本文转自: https://blog.csdn.net/zstu_cc/article/details/39250903 https://blog.csdn.net/zstu_cc/article/d ...

  7. 利用 Jenkins 持续集成 iOS 项目,搭建自动化打包环境

    ---恢复内容开始--- jenkins是一个广泛用于持续构建的可视化web工具,持续构建即各种项目的”自动化”编译.打包.分发部署.jenkins可以很好的支持各种语言(比如:Java, c#, P ...

  8. Linux kali安装或更新之后出现乱码

    打开终端,输入以下命令,之后重启. apt-get install ttf-wqy-zenhei

  9. msbuild发布web应用程序

    aspnet_compiler.exe 只能编译 网站,web应用程序项目使用下面的命令即可. msbuild C:\Jenkins\jobs\KM_ERP_WEBAPP\workspace\KMWe ...

  10. GSS系列题解——最大子段和系列

    开坑啦! 2019 3/28 以前一直不知道怎么搞最大子段和,如今终于可以学习,其实真的很简单啊. 2019 3/29 树链剖分上最大子段和也OK啦 前置技能:线段树 题目大意:询问区间[l,r]的最 ...