仅简单分析自己感兴趣的论文。

9.6 Million Links in Source Code Comments: Purpose, Evolution, and Decay

分析了 source code comments中的link问题。发现其存在decay, insufficient versioning, and lack of bidirectional traceability问题。属于Empirical study类型的论文。

A Framework for Checking Regression Test Selection Tools

对回归测试选择工具进行了测试。

A Neural Model for Generating Natural Language Summaries of Program Subroutines

分析了source code summarization问题。主要基于neural machine translation方法。

A Novel Neural Source Code Representation based on Abstract Syntax Tree

已有的方法将代码视为自然语言文本,因此会遗漏重要的语义信息。

已有研究一般基于AST,但AST存在size大的问题,并且存在long-term dependency的问题。论文提出了AST-based neural network。

Active Inductive Logic Programming for Code Search

代码搜索问题。论文提出交互式代码搜索方法ALICE

Analyzing and Supporting Adaptation of Online Code Examples

代码搜索。从online code角度入手。

Adversarial Sample Detection for Deep Neural Network through Model Mutation Testing

基于变异测试检测Adversarial Sample

Attack Surface Identification for Vulnerability Assessment through Program Metrics

安全漏洞预测

CRADLE: Cross-Backend Validation to Detect and Localize Bugs in Deep Learning Libraries

深度学习库中检测和定位bugs

Class Imbalance Evolution and Verification Latency in Just-in-Time Software Defect Prediction

Just-in-time缺陷预测问题

Exposing Library API Misuses via Mutation Analysis

API误用问题

FOCUS: A Recommender System for Mining API Function Calls and Usage Patterns

API函数使用问题

Graph-based Mining of In-the-Wild, Fine-grained, Semantic Code Change Patterns

针对代码变更的建模

Guiding Deep Learning System Testing using Surprise Adequacy

深度学习系统的测试

Hunting for Bugs in Code Coverage Tools via Randomized Differential Testing

对代码覆盖工具

Natural Software Revisited

NL2Type: Inferring JavaScript Function Types from Natural Language Information

Mining and Continuously Growing a Dataset of Reproducible Real-World Software Faults and Fixes

Learning to Spot and Refactor Inconsistent Method Names

On Learning Meaningful Code Changes via Neural Machine Translation

Pattern-based Mining of Opinions in Q&A Websites

ReCDroid: Automatically Reproducing Android Application Crashes from Bug Reports

Recovering Variable Names for Minified Code with Usage Contexts

Search-Based Energy Testing of Android

APP能耗问题

When Code Completion Fails: a Case Study on Real-World Completions

代码补全

ICSE 2018 论文的更多相关文章

  1. AAAI 2018 论文 | 蚂蚁金服公开最新基于笔画的中文词向量算法

    AAAI 2018 论文 | 蚂蚁金服公开最新基于笔画的中文词向量算法 2018-01-18 16:13蚂蚁金服/雾霾/人工智能 导读:词向量算法是自然语言处理领域的基础算法,在序列标注.问答系统和机 ...

  2. ICML 2018 | 从强化学习到生成模型:40篇值得一读的论文

    https://blog.csdn.net/y80gDg1/article/details/81463731 感谢阅读腾讯AI Lab微信号第34篇文章.当地时间 7 月 10-15 日,第 35 届 ...

  3. XLM论文原理解析

    1. 前言 近一年来,NLP领域发展势头强劲,从ELMO到LSTM再到去年最牛叉的Google Bert,在今年年初,Facebook又推出了XLM模型,在跨语言预训练领域表现抢眼.实验结果显示XLM ...

  4. InfoQ一波文章:AdaSearch/JAX/TF_Serving/leon.bottou.org/Neural_ODE/NeurIPS_2018最佳论文

    和 Nested Partition 有相通之处? 伯克利提出 AdaSearch:一种用于自适应搜索的逐步消除方法 在机器学习领域的诸多任务当中,我们通常希望能够立足预先给定的固定数据集找出问题的答 ...

  5. 论文解读(RvNN)《Rumor Detection on Twitter with Tree-structured Recursive Neural Networks》

    论文信息 论文标题:Rumor Detection on Twitter with Tree-structured Recursive Neural Networks论文作者:Jing Ma, Wei ...

  6. FBOSS: Building Switch Software at Scale

    BOSS: 大规模环境下交换机软件构建 本文为SIGCOMM 2018 论文,由Facebook提供. 本文翻译了论文的关键内容. 摘要: 在网络设备(例如交换机和路由器)上运行的传统软件,通常是由供 ...

  7. Improving Sequential Recommendation with Knowledge-Enhanced Memory Networks(知识图谱)

    本文作者:杨昆霖,2015级本科生,目前研究方向为知识图谱,推荐系统,来自中国人民大学大数据管理与分析方法研究北京市重点实验室. 引言 经常上购物网站时,注意力会被首页上的推荐吸引过去,往往本来只想买 ...

  8. Paper Mark

    BigCowPeking的CSDN博客 https://blog.csdn.net/wfei101/article/category/7120809 Low Rank Structure of Lea ...

  9. NLP 自然语言处理之综述

    (1) NLP 介绍 NLP 是什么? NLP (Natural Language Processing) 自然语言处理,是计算机科学.人工智能和语言学的交叉学科,目的是让计算机处理或"理解 ...

随机推荐

  1. sql脚本过大,无法打开的解决方法

    打开cmd命令窗口,输入如下命令: sqlcmd -S ipaddress -U user -P password -d dbname -i file 其中,ipaddress是数据库服务器ip,us ...

  2. Maven 下添加oracle11g的包 报Missing artifact com.oracle:ojdbc6:jar:11.2.0.1.0

    Missing artifact com.oracle:ojdbc6:jar:11.2.0.1.0 原因:Oracle 的ojdbc.jar是收费的,所以maven的中央仓库中没有这个资源,只能通过配 ...

  3. html弹出div

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  4. Android 开发 记录一个DP、PX、SP转换工具类

    public class UnitConversionUtil { /** * 根据手机分辨率从DP转成PX * @param context * @param dpValue * @return * ...

  5. Hive随机取某几行数据

    order by rand() limit 100 1. 可用于普通随机筛选 2. 也可用于row_number() 等函数的排序里作为随机排序.

  6. 创建只读账号oracle

    1.创建用户,指定哪个表空间create user test2 identified by "123" default tablespace BDCDJ_XC temporary ...

  7. 开窗函数over

    select   id,sum(je) over() as je from dt

  8. sqlserver 存储过程 自定义函数 游标???

    create proc cur_fun( @cur cursor --输入参数 ) as begin declare @mytpye tb1_type ) fetch next from @cur i ...

  9. Cookie在前端读不到 多半是因为Cookie在服务器端的设置是HttpOnly 意味着只能在后台操作Cookie

    比如Shiro框架的 RememberMe Cookie 是不允许Js进行读写的 只能在服务器端通过同一个域的请求获得 import com.constantine.forum.exception.F ...

  10. Build Tool/Maven, Gradle

    一.Build Tool 1.什么是Build Tool build tool是可以自动由源代码创建可执行的应用程序的程序. Building 包括编译.链接和打包代码成一个可用的或可执行形式. 在小 ...