CanChen ggchen@mail.ustc.edu.cn


 

To share or not share

  • Motivation: With the publiaction of NAS101, the author wants to study how weight sharing work in different search spaces and the correlation between the supernet and results returned by NAS101.
  • Method: The paper did extensive experiments in weight sharing methods with different search spaces and showed that search space plays an important role in the correlation.
  • Contribution: The work made good use of NAS101 but I did not see any novelty in this work.
 

NAS EVALUATION IS FRUSTRATINGLY HARD

  • Motivation: NAS needs some criteria.
  • Method: This paper did a wide range of experiments and showed that cell-based searched models tends to have similar accuracies.
    Also, the selection of seeds and macro structures are important. The operations, instead, have less impact on the performance.
  • Contribution: This paper is a ILCR paper, probably because this paper analysed some important issues in NAS evaluation.

PaperReading20200226的更多相关文章

随机推荐

  1. 搭建第一个django项目

    django是python做web最为强大和全能的后端框架,不会django的python如一条咸鱼... 所以开始学习django框架. 首选得在python中下载django 下载命令: pip ...

  2. LLC半桥谐振变换器调试记录

    1.判断二极管是否击穿 2.判断mos管是否烧坏 直接用声音档,发出响声说明击穿了 3.测试二极管的正负极方法 将万用表调到二极管档 1.信号发生芯片周围的电阻 2.反馈部分的电阻 3.实验准备部分: ...

  3. html 中js 如何给字符串加换行符

    var str = 你好'+"\n"+ '世界'; 这种写法在html中是会被识别为"你好\n世界" 那么如何保证其这么写会被识别,只需要在该div的样式中加入 ...

  4. print、println、printf的区别(转载)

    printf主要是继承了C语言的printf的一些特性,可以进行格式化输出   print就是一般的标准输出,但是不换行   println和print基本没什么差别,就是最后会换行   System ...

  5. JavaScript中关于隐式转换的一些总结

    JavaScript运算符中的隐式转换规律:一.递增递减运算符(前置.后置)1.如果包含的是有效数字字符串或者是有效浮点数字符串,则会将字符串转换(Number())为数值,再进行加减操作,返回值的类 ...

  6. [原]NTP时钟同步服务设置

    服务器列表 192.168.0.2 ntp服务端 192.168.0.3 ntp客户端 192.168.0.4 ntp客户端 192.168.0.5 ntp客户端 注:以下操作均以root操作 一.N ...

  7. [原]Java工程打包注意事项

    注意事项(持续增加...): 如果Java工程中用到了注解,在用eclipse打jar包时需要注意一下,勾上“Add directory entries”,否则注解的类会注册不上

  8. Hash Table(散列表)

    这篇主要是基础的数据结构学习,写的时候才明白了书上说到的一些问题,由于该篇仅仅只是对这种数据结构进行一个理解,所以很基础,关于h(x)函数也只是简单的运用了除法散列,然后为了应对冲突,我用的是链接法. ...

  9. PB开启源码文件

    下载的源码没有pbw文件,新建workspace,然后new Target选existing application

  10. Tensorflow机器学习入门——ModuleNotFoundError: No module named 'tensorflow.keras'

    这个bug的解决办法: # from tensorflow.keras import datasets, layers, models from tensorflow.python.keras imp ...