亚洲免费av电影一区二区三区,日韩爱爱视频,51精品视频一区二区三区,91视频爱爱,日韩欧美在线播放视频,中文字幕少妇AV,亚洲电影中文字幕,久久久久亚洲av成人网址,久久综合视频网站,国产在线不卡免费播放

        ?

        Intelligent analysis for software data:research and applications

        2022-11-16 09:18:16TaoZHANGXiaobingSUNZibinZHENGGeLI

        Tao ZHANG ,Xiaobing SUN ,Zibin ZHENG ,Ge LI

        1School of Computer Science and Engineering,Macau University of Science and Technology,Macao,China

        2School of Information Engineering,Yangzhou University,Yangzhou 225127,China

        3School of Software Engineering,Sun Yat-sen University,Zhuhai 519082,China

        4School of Computer Science,Peking University,Beijing 100871,China

        E-mail:tazhang@must.edu.mo;xbsun@yzu.edu.cn;zhzibin@mail.sysu.edu.cn;lige@pku.edu.cn

        Over the last few decades,software has been one of the primary drivers of economic growth in the world.Human life depends on reliable software;therefore,the software production process (i.e.,software design,development,testing,and maintenance) becomes one of the most important factors to ensure the quality of software.During the production process,large amounts of software data (e.g.,source code,bug reports,logs,and user reviews)are generated.

        With the increase in the complexity of software,how to use software data to improve the performance and efficiency of software production has become a challenge for software developers and researchers.To address this challenge,researchers have used information retrieval,data mining,and machine learning technologies to implement a series of automated tools to improve the efficiency of some important software engineering tasks,such as code search,code summarization,severity/priority prediction,bug localization,and program repair.However,these traditional approaches cannot deeply capture the semantic relations of contextual information and usually ignore the structural information of source code.Therefore,there is still room to improve the performance of these automated software engineering tasks.

        The word“intelligent”means that we can use a new generation of artificial intelligence (AI) technologies (e.g.,deep learning)to design a series of“smart”automated tools to improve the effectiveness and efficiency of software engineering tasks so that developers’ workloads are dramatically reduced.

        Currently,advancement has been achieved by a new generation of AI approaches,which are well suited to address software engineering problems.We show two classical and popular automated software engineering tasks using“intelligent”analysis technology for software data as follows:

        1.Intelligent software development

        Code search and summarization can help developers develop quality software and improve efficiency.Code search is a frequent activity in software development that can help developers find suitable code snippets to complete software projects.Developers usually input the descriptions of these snippets as queries to achieve this purpose.However,it is extremely challenging to design a practically useful code search tool.The previous information retrieval based approaches ignored the semantic relationship between the high-level descriptions expressed by natural language and low-level source code,which affects the performance of code search.Different from information retrieval based methods,deep learning technologies can automatically learn feature representations and build mapping relationships between inputs and outputs.Therefore,the performance of code search is improved.Code summarization is the task of automatically generating natural language descriptions of source code,which can help developers understand and maintain software.In traditional automated code summarization work,researchers tend to use the summary template to extract keywords of source code,which ignores the grammar information of source code.At present,neural network technology has developed vigorously.Convolutional neural networks(CNNs),recurrent neural networks (RNNs),transformers,and other deep learning networks are applied to the task of automated code summarization.

        2.Intelligent software maintenance

        Severity/Priority prediction can automatically recommend appropriate labels to help developers reduce the workload for labeling severity and priority levels,which are the important features of bug reports.Severity shows the serious levels of the reported bugs,while priority indicates which bugs should be first fixed.The prediction task can help developers quickly assign the important bugs to appropriate developers for fixing them so that the efficiency of software maintenance is improved.Traditional approaches usually adopt machine learning technologies such as support vector machine (SVM) and naive Bayes (NB) to predict the severity/priority level.However,these approaches cannot overcome the problem of data imbalance,so the prediction accuracy is not perfect.Some deep learning technologies,such as CNNs and graph convolutional networks(GCNs),can effectively resolve this problem and capture the contextual semantic information of bug reports so that the prediction performance is improved.

        In this context,we organize a special feature in the journalFrontiers of Information Technology &Electronic Engineeringon intelligent analysis for software data.This special feature covers software architecture recovery,app review analysis,integration testing,software project management,defect prediction,and method rename,as well as related applications.After a rigorous review process,six papers were selected.

        Software architecture plays an important role in the software life-cycle,especially in software evolution.It is difficult to maintain up-to-date architecture documentation because it should contain knowledge from all software stakeholders.Therefore,the software architecture recovery task aims to identify and extract architectural information from lower-level representations of a software system such as source code.However,this task is costly in both academia and industry.To resolve this problem,Bixin LI and his collaborators proposed the incremental software architecture recovery technique called ISAR based on existing architectures and related code changes.They built a mapping between code-level changes and architecture-level updates,which can help researchers improve the performance of software recovery technologies.The evaluation results on 10 open-source projects showed that ISAR performs better than selected previous studies.

        Identifying emerging topics (e.g.,bugs) accurately in user reviews can help developers more effectively update apps.However,the accuracy of emerging topic identification implemented in previous studies is not perfect because user reviews are short and provide limited information.To resolve the problem,Yong WANG and his collaborators proposed an improved emerging topic identification approach.They adopted natural language processing technologies to reduce noisy data and identify emerging topics in app reviews using the adaptive online biterm topic model (AOBTM).Experimental results showed that the proposed approach can effectively identify emerging topics.

        Integration testing is an integral part of software testing.Previous studies have focused on reducing test costs in integration testing order generation.However,no studies have explored the testing priorities of critical classes when generating integration testing orders.Hai YU and his collaborators proposed a multilayer dynamic execution network (MDEN) model to quantify the testing priority of each class based on probabilistic risk analysis.In addition,they proposed a strategy to devise an optimal integration testing order,which ensures that high-risk classes can be tested earlier and minimizes the complexity of the test stubs.Experiments on six open-source projects showed that the approach outperforms the baseline approaches for software with different scales.

        Cross-project software defect prediction solves the problem of insufficient training data for traditional defect prediction.However,there are still two challenges:(1) Many irrelevant and redundant features in the training process of the model affect the training efficiency and decrease the prediction accuracy;(2) The distribution of metric values varies greatly from project to project due to the development environment,resulting in lower prediction accuracy when the model is applied in cross-project prediction.To address these two challenges,Saihua CAI and his collaborators proposed a new software defect prediction method with metric comprehension based on feature selection and transfer learning.Experimental results showed that the proposed approach shows better performance.

        Methods in programs must be accurately named to facilitate source code analysis and comprehension.With the evolution of software,method names may be inconsistent with their implemented method bodies,leading to inaccurate or buggy method names.Many studies have focused on suggesting accurate method names when the method bodies have beenmodified;however,there are two problems appearing in these studies:(1) a lack of analysis of the structure of method names and (2) a lack of efficient capture of the programming context information.To address these problems,Jingxuan ZHANG and his collaborators proposed a novel method renaming approach to suggest high-quality method names by leveraging structural analysis and lexical analysis.They conducted a series of experiments to validate the effectiveness of the proposed approach,and the results showed that it can significantly improve the state-of-the-art approaches.

        Task-oriented virtual assistants are software systems that provide users with a natural language interface to complete domain-specific tasks.However,due to the well-known complexity and difficulty of the natural language understanding problem,it is challenging to manage a task-oriented virtual assistant software project.Shuyue LI and her collaborators shared their practices for addressing the problems and presented the lessons learned at managing a task-oriented virtual assistant software project.They also developed a novel requirement management tool to improve the management efficiency for task-oriented virtual assistant software projects.

        Overall,the abovementioned six studies cover many automated tasks to improve the effectiveness and efficiency of software production by analyzing software data.They also provide a series of solutions to overcome the challenges appearing in previous studies.We hope that this collection of interesting and important topics will be beneficial to those with an interest in intelligent analysis for software data or in related areas.

        Finally,we would like to express our special gratitude to the authors and reviewers for their support and valuable contributions to this special feature,the editorial staff,and the Editors-in-Chief Profs.Yunhe PAN and Xicheng LU.

        久久精品夜色噜噜亚洲a∨| 精品女同一区二区三区免费播放| 久久99国产乱子伦精品免费| 自拍偷自拍亚洲精品播放| 欧美日韩亚洲色图| 91精品国产色综合久久不卡蜜| 亚洲精品理论电影在线观看| 国产做床爱无遮挡免费视频| 日韩女优中文字幕在线 | 一区二区免费国产a在亚洲| 日本免费播放一区二区| 日韩人妻系列在线观看| 国产乱码人妻一区二区三区| 国产精品久久久久免费观看| 久久久老熟女一区二区三区| 久久精品国产亚洲av大全| 国产精品无套内射迪丽热巴| 免费毛片在线视频| 亚洲欧洲日产国码久在线| 一片内射视频在线观看| 亚洲精品一区三区三区在线| 日韩 无码 偷拍 中文字幕| 亚洲精品综合欧美一区二区三区| 亚洲国产毛片| 黑丝美女喷水在线观看| 一区二区三区在线观看人妖| 日韩中文字幕在线观看一区| 久久无码字幕中文久久无码| 免费人妻精品一区二区三区 | 亚洲精品成人网站在线观看| 久久久久久久久高潮无码| 国产精品黄页免费高清在线观看| 一本色道久久亚洲精品| 日韩av无码社区一区二区三区| 国产尤物av尤物在线观看| 久久精品国产99久久丝袜| 91色婷婷成人精品亚洲| 国产不卡av一区二区三区| h视频在线播放观看视频| 无码gogo大胆啪啪艺术| 无码国产精品一区二区高潮|