期刊文献+
共找到467篇文章
< 1 2 24 >
每页显示 20 50 100
Automated pattern-directed refactoring for complex conditional statements
1
作者 刘伟 胡志刚 +1 位作者 刘宏韬 杨柳 《Journal of Central South University》 SCIE EI CAS 2014年第5期1935-1945,共11页
Complex conditional statement is one of the bad code smells, which affects the quality of the code and design of software. In the proposed approach, two commonly-used design patterns for handling complex conditional s... Complex conditional statement is one of the bad code smells, which affects the quality of the code and design of software. In the proposed approach, two commonly-used design patterns for handling complex conditional statements are selected, and they are the factory method pattern and the strategy pattem. Two pattern-directed refactoring approaches based on the two design patterns are proposed. Each approach contains a refactoring opportunities identification algorithm and an automated refactoring algorithm. After parsing the abstract syntax tree generated from source code, the refactoring opportunities are identified effectively and automatically. Then, for candidate code, refactoring algorithms are executed automatically, which are used to simplify or remove complex conditional statements. By empirical analysis and quality assessment, the code after refactoring has better maintainability and extensibility, and the proposed approach for automated pattern-directed refactoring succeeds to reduce code size and complexity of classes. 展开更多
关键词 refactoring abstract syntax tree complex conditional statements design patterns factory method pattem strategypattem
在线阅读 下载PDF
用Refactoring来改善设计
2
作者 周警伟 罗晓沛 《计算机仿真》 CSCD 2002年第4期124-125,共2页
面向对象的技术提高了软件重用能力 ,人们经验的不断总结也不断地改善了设计方法。如何去改善我们原有的系统是一个比较复杂的课题 ,也是一个不可回避的问题。这篇论文论述了如何使用Refactoring技术来改善原有设计。
关键词 refactoring 软件开发 面向对象 软件重用 软件重构
在线阅读 下载PDF
Refactoring Software Packages via Community Detection in Complex Software Networks 被引量:4
3
作者 Wei-Feng Pan Bo Jiang Bing Li 《International Journal of Automation and computing》 EI CSCD 2013年第2期157-166,共10页
An intrinsic property of software in a real-world environment is its need to evolve, which is usually accompanied by the increase of software complexity and deterioration of software quality, making software maintenan... An intrinsic property of software in a real-world environment is its need to evolve, which is usually accompanied by the increase of software complexity and deterioration of software quality, making software maintenance a tough problem. Refactoring is regarded as an effective way to address this problem. Many refactoring approaches at the method and class level have been proposed. But the research on software refactoring at the package level is very little. This paper presents a novel approach to refactor the package structures of object oriented software. It uses software networks to represent classes and their dependencies. It proposes a constrained community detection algorithm to obtain the optimized community structures in software networks, which also correspond to the optimized package structures. And it finally provides a list of classes as refactoring candidates by comparing the optimized package structures with the real package structures. The empirical evaluation of the proposed approach has been performed in two open source Java projects, and the benefits of our approach are illustrated in comparison with the other three approaches. 展开更多
关键词 refactoring community detection complex networks PACKAGE SOFTWARE
原文传递
Application of Refactoring and Design Pattern in Land Information System Development 被引量:1
4
作者 CHEN Luyao YUE Jianwei +2 位作者 JIANG Weiguo LI Jing CHEN Yunhao 《Geo-Spatial Information Science》 2007年第4期299-302,共4页
The unceasing change problem of land information systems can be resolved through the refactoring and design pattern. To promote the implementation of design pattern and refactoring methods in developing land informati... The unceasing change problem of land information systems can be resolved through the refactoring and design pattern. To promote the implementation of design pattern and refactoring methods in developing land information systems reusing software design, applying refactoring methods to the abstract factory and decorator design patterns in land information system development is discussed. 展开更多
关键词 design pattern refactoring land information system
在线阅读 下载PDF
Source-to-Source Refactoring and Elimination of Global Variables in C Programs
5
作者 Hemaiyer Sankaranarayanan Prasad A. Kulkarni 《Journal of Software Engineering and Applications》 2013年第5期264-273,共10页
A global variable in C/C++ is one that is declared outside a function, and whose scope extends the lifetime of the entire program. Global variables cause problems for program dependability, maintainability, extensibil... A global variable in C/C++ is one that is declared outside a function, and whose scope extends the lifetime of the entire program. Global variables cause problems for program dependability, maintainability, extensibility, verification, and thread-safety. However, global variables can also make coding more convenient and improve program performance. We have found the use of global variables to remain unabated and extensive in real-world software. In this paper we present a source-to-source refactoring tool to automatically detect and localize global variables in a program. We implement a compiler based transformation to find the best location to redefine each global variable as a local. For each global, our algorithm initializes the corresponding new local variable, passes it as an argument to necessary functions, and updates the source lines that used the global to now instead use the corresponding local or argument. We also characterize the use of global variables in standard benchmark programs. We study the effect of our transformation on static program properties, such as change in the number of function arguments and program state visibility. Additionally, we quantify dynamic program features, including memory and runtime performance, before and after our localizing transformation. 展开更多
关键词 GLOBAL Variable Program refactoring COMPILER TRANSFORMATIONS
暂未订购
Identification of refactoring opportunities for source code based on class association relationships
6
作者 LIU Wei YANG Na +2 位作者 HUANG Xin-di HU Wei HU Zhi-gang 《Journal of Central South University》 SCIE EI CAS CSCD 2020年第12期3768-3778,共11页
In order to deal with the complex association relationships between classes in an object-oriented software system,a novel approach for identifying refactoring opportunities is proposed.The approach can be used to dete... In order to deal with the complex association relationships between classes in an object-oriented software system,a novel approach for identifying refactoring opportunities is proposed.The approach can be used to detect complex and duplicated many-to-many association relationships in source code,and to provide guidance for further refactoring.In the approach,source code is first transformed to an abstract syntax tree from which all data members of each class are extracted,then each class is characterized in connection with a set of association classes saving its data members.Next,classes in common associations are obtained by comparing different association classes sets in integrated analysis.Finally,on condition of pre-defined thresholds,all class sets in candidate for refactoring and their common association classes are saved and exported.This approach is tested on 4 projects.The results show that the precision is over 96%when the threshold is 3,and 100%when the threshold is 4.Meanwhile,this approach has good execution efficiency as the execution time taken for a project with more than 500 classes is less than 4 s,which also indicates that it can be applied to projects of different scales to identify their refactoring opportunities effectively. 展开更多
关键词 identification of refactoring opportunities abstract syntax tree class association relationships common association classes source code
在线阅读 下载PDF
Developing a Clang Libtooling-Based Refactoring Tool for CUDA GPU Programming
7
作者 Kian Nejadfard Janche Sang 《Journal of Software Engineering and Applications》 2024年第2期89-108,共20页
Refactoring tools, whether fully automated or semi-automated, are essential components of the software development life cycle. As software libraries and frameworks evolve over time, it’s crucial for programs utilizin... Refactoring tools, whether fully automated or semi-automated, are essential components of the software development life cycle. As software libraries and frameworks evolve over time, it’s crucial for programs utilizing them to also evolve to remain compatible with modern advancements. Take, for example, NVIDIA CUDA’s platform for general-purpose GPU programming. Embracing the more contemporary unified memory architecture offers several benefits, such as simplifying program source code, reducing bugs stemming from manual memory management between host and device memory, and optimizing memory transfer through automated memory handling. This paper describes our development of a refactoring tool based on Clang’s Libtooling to facilitate this transition automatically, thereby relieving developers from the burden and risks associated with manually refactoring large code bases. 展开更多
关键词 refactoring CUDA Unified Memory Clang Libtooling
在线阅读 下载PDF
复杂故障下静态安全分析的部分因子化修正改进方法
8
作者 王毅 李可萌 +3 位作者 曹国芳 闪鑫 陆娟娟 陈中 《电力系统自动化》 北大核心 2026年第3期167-179,共13页
新型电力系统运行方式变化愈发频繁且复杂,要求静态安全分析应用能快速处理各种复杂预想故障。复杂预想故障存在电气节点数增减等特性,现有部分因子化修正方法适用性不佳,限制了当前静态安全分析应用的性能。为此,文中提出了部分因子化... 新型电力系统运行方式变化愈发频繁且复杂,要求静态安全分析应用能快速处理各种复杂预想故障。复杂预想故障存在电气节点数增减等特性,现有部分因子化修正方法适用性不佳,限制了当前静态安全分析应用的性能。为此,文中提出了部分因子化修正改进方法。首先,分析了现有考虑线路N-1的部分因子化修正方法和加大数法在母联开关N-1(节点增加)、母线N-1(节点减少)等场景下的应用局限性。然后,针对电气节点减少场景提出了节点隔离法,通过理论推导证明了节点隔离法可在远优于加大数法数值稳定性的基础上实现方程求解误差接近机器精度。随后,针对电气节点不变及增加场景,提出了增量矩阵分解策略和两阶段法,克服了以往部分因子化修正技术仅能高效处理线路N-1等简单故障的弊端。接着,提出了部分因子化修正框架,整合了节点隔离法(节点减少)、增量矩阵分解(节点不变)和两阶段法(节点增加),将部分因子化修正技术的适用范围拓展到全类型预想故障。最后,设计了包含D5000测试环境和仿真环境的多种规模算例,验证了所提方法较D5000内置算法及传统部分因子化修正算法的优势,支撑了静态安全分析应用。 展开更多
关键词 静态安全分析 部分因子化修正 故障 节点隔离 拓扑变化
在线阅读 下载PDF
融合静态分析与大语言模型的非连续代码重构方法
9
作者 嵇友晴 张迎周 +3 位作者 苏玉鹏 王刚 张文智 谢金言 《计算机研究与发展》 北大核心 2026年第4期868-883,共16页
随着大语言模型(LLM)在软件工程领域的广泛应用,通过其强大的代码理解与生成能力进行自动化代码重构,已成为提升软件质量与开发效率的关键方向。然而,对于由语句交错、重排等导致的非连续代码克隆,LLM在重构时面临着语义上下文分散、关... 随着大语言模型(LLM)在软件工程领域的广泛应用,通过其强大的代码理解与生成能力进行自动化代码重构,已成为提升软件质量与开发效率的关键方向。然而,对于由语句交错、重排等导致的非连续代码克隆,LLM在重构时面临着语义上下文分散、关键依赖捕捉困难以及易产生“幻觉”错误等核心挑战。为应对这些挑战,提出了一种融合静态分析与LLM的非连续代码克隆重构方法。该方法首先通过结合程序切片与代数分类器,高效精准地识别非连续克隆;然后,通过一种基于上下文信息的重构机会识别算法,为LLM确定最佳重构目标;最后,利用思维链少样本提示策略引导LLM生成高质量的“提取函数”重构建议,并利用蜕变关系验证机制,对生成结果进行语义和结构一致性验证。所提出的重构方法在Junit等真实项目中减少了66%~71%的克隆代码。此外,在开源数据集Google Code Jam和BigCloneBench上的实验表明,所提出的检测方法F1值较现有主流工具提升了2%~18%,在Community Corpus-A重构机会识别基准上,F1值达到了0.415,超越先进工具GEMS 7.5%,提升了软件质量。 展开更多
关键词 大语言模型 静态分析 非连续代码克隆 代码重构 提示工程
在线阅读 下载PDF
生产性理念下的城市社区养老空间设计与功能重构研究
10
作者 张铱格 《城市建筑》 2026年第6期40-42,共3页
文章围绕生产性理念下的城市社区养老空间展开研究,剖析其内涵、现状及价值,从设计原则、空间布局与功能设施配置策略方面探讨应用方式,并研究居住、活动、服务功能重构路径,旨在为城市社区养老空间优化及模式创新提供理论与实践支撑,... 文章围绕生产性理念下的城市社区养老空间展开研究,剖析其内涵、现状及价值,从设计原则、空间布局与功能设施配置策略方面探讨应用方式,并研究居住、活动、服务功能重构路径,旨在为城市社区养老空间优化及模式创新提供理论与实践支撑,以应对人口老龄化背景下社区养老发展新需求。 展开更多
关键词 生产性理念 城市社区养老空间 功能重构
在线阅读 下载PDF
城市更新视角下的商业综合体空间重构研究
11
作者 岳媛媛 《智能城市应用》 2026年第1期83-85,共3页
城市更新是指通过对城市空间、功能及环境的系统性改造与优化,以提升城市居民生活质量、改善城市环境、促进经济发展并满足多样化需求的过程。这一概念在现代城市规划与建设中占据重要地位,其核心目标在于通过科学合理的空间重构与资源... 城市更新是指通过对城市空间、功能及环境的系统性改造与优化,以提升城市居民生活质量、改善城市环境、促进经济发展并满足多样化需求的过程。这一概念在现代城市规划与建设中占据重要地位,其核心目标在于通过科学合理的空间重构与资源整合,实现城市功能的全面提升与可持续发展。城市更新不仅关注物质空间的改善,还强调社会、经济与环境的协调发展,从而推动城市从外延式扩张向内涵式增长转变。在当前城市化进程加速的背景下,城市更新对于缓解土地资源紧张、优化城市结构、提升城市竞争力具有不可替代的作用。此外,城市更新还能够通过引入创新元素与多元业态,激发城市活力,为城市经济注入新的增长动力,同时满足市民对高品质生活的追求。 展开更多
关键词 城市更新 商业综合体 重构研究
在线阅读 下载PDF
面向智慧农业的LoRa-WSN自适应拓扑重构方法
12
作者 崔运辉 《智能物联技术》 2026年第1期140-144,共5页
针对智慧农业远距离无线电-无线传感器网络(Long Range Radio-Wireless Sensor Network,LoRaWSN)传统拓扑难以适配动态场景的问题,先分析星型、树型分层、传统Mesh这3类主流拓扑的核心劣势(如星型链路适配缺失、树型容错性差、传统Mesh... 针对智慧农业远距离无线电-无线传感器网络(Long Range Radio-Wireless Sensor Network,LoRaWSN)传统拓扑难以适配动态场景的问题,先分析星型、树型分层、传统Mesh这3类主流拓扑的核心劣势(如星型链路适配缺失、树型容错性差、传统Mesh的路由与能耗缺陷),再提出基于链路质量的多跳自适应传输系统,包括链路质量指示-地形适应因子(Link Quality Indicator-terrain adaptation factor,LQI-τ)协同建模、改进粒子群优化(Particle Swarm Optimization,PSO)能耗优化、主成分分析(Principal Component Analysis,PCA)+卡尔曼滤波质量模型与数据优先级差异化保障策略。实验结果表明,所提方法可有效提升数据传输成功率与网络生存周期,降低传输延迟与节点能耗,精准满足智慧农业动态场景需求。 展开更多
关键词 智慧农业 远距离无线电-无线传感器网络(LoRa-WSN) 自适应拓扑 重构方法
在线阅读 下载PDF
A Recommendation Approach Based on Bayesian Networks for Clone Refactor
13
作者 Ye Zhai Celimuge Wu +1 位作者 Dongsheng Liu Rongrong She 《Computers, Materials & Continua》 SCIE EI 2020年第9期1999-2012,共14页
Reusing code fragments by copying and pasting them with or without minor adaptation is a common activity in software development.As a result,software systems often contain sections of code that are very similar,called... Reusing code fragments by copying and pasting them with or without minor adaptation is a common activity in software development.As a result,software systems often contain sections of code that are very similar,called code clones.Code clones are beneficial in reducing software development costs and development risks.However,recent studies have indicated some negative impacts as a result.In order to effectively manage and utilize the clones,we design an approach for recommending refactoring clones based on a Bayesian network.Firstly,clone codes are detected from the source code.Secondly,the clones that need to be refactored are identified,and the static and evolutions features are extracted to build the feature database.Finally,the Bayesian network classifier is used for training and evaluating the classification results.Based on more than 640 refactor examples of five open source software developed in C,we observe a considerable enhancement.The results show that the accuracy of the approach is larger than 90%.We believe our approach will provide a more accurate and reasonable code refactoring and maintenance advice for software developers. 展开更多
关键词 Clone code clone refactor feature extraction Bayesian network
在线阅读 下载PDF
MySQL数据库复杂多表联合查询的优化策略及性能分析 被引量:1
14
作者 刘雪梅 《软件》 2025年第10期138-140,共3页
随着数据量的持续增长,MySQL数据库在处理复杂多表联合查询时面临显著的性能挑战。针对查询响应时间长、资源消耗高等瓶颈,本文围绕索引设计、执行计划优化及SQL语句重构等方面展开系统优化策略设计。通过执行计划关键字段分析,建立优... 随着数据量的持续增长,MySQL数据库在处理复杂多表联合查询时面临显著的性能挑战。针对查询响应时间长、资源消耗高等瓶颈,本文围绕索引设计、执行计划优化及SQL语句重构等方面展开系统优化策略设计。通过执行计划关键字段分析,建立优化模型,提升查询效率。实验结果显示,优化方案显著缩短了查询时间,降低了系统负载,具备良好的应用价值和推广前景。 展开更多
关键词 MYSQL 多表联合查询 执行计划 索引优化 SQL重构
在线阅读 下载PDF
基于可重构电池的储能安全系统设计与机制分析
15
作者 张路霞 《储能科学与技术》 北大核心 2025年第6期2380-2382,共3页
电化学储能技术的快速发展带来了能源变革,但是储能系统的安全问题也在日益凸显,常规电池组的短板效应是储能系统安全问题的核心。可重构电池的出现可以有效解决传统储能系统安全性问题,对此针对以可重构电池为主体的储能安全系统设计... 电化学储能技术的快速发展带来了能源变革,但是储能系统的安全问题也在日益凸显,常规电池组的短板效应是储能系统安全问题的核心。可重构电池的出现可以有效解决传统储能系统安全性问题,对此针对以可重构电池为主体的储能安全系统设计理念和相应机制展开研究。文章首先阐述了可重构电池的内在应用优势以及相关产业技术研究进展,随后详细阐述了储能安全系统的机制优化。包括安全能量数字化思想和动态重组等,最后分析了储能系统故障诊断流程,进一步保证储能系统的安全性。事实证明,动态可重构电池技术可以极大地提高电池储能系统的安全性和能量效率,也为后续大规模长寿命低成本电池和储能系统的设计提供了全新的路径。 展开更多
关键词 重构 储能安全 系统设计 电池簇
在线阅读 下载PDF
基于PF-Net的3D点云模型部分缺失重构研究
16
作者 李政林 王健 +3 位作者 方志杰 马媛 时斌杰 范晴晴 《工业控制计算机》 2025年第3期22-24,27,共4页
针对3D点云模型由于遮挡、噪声等主客观因素导致部分数据信息和结构丢失的问题,提出了一种基于PF-Net的3D点云模型部分缺失重构方法,开发了一款模型缺失重构系统。基于深度学习PF-Net的网络架构,引进了Batch Normal层和Dropout层,对原... 针对3D点云模型由于遮挡、噪声等主客观因素导致部分数据信息和结构丢失的问题,提出了一种基于PF-Net的3D点云模型部分缺失重构方法,开发了一款模型缺失重构系统。基于深度学习PF-Net的网络架构,引进了Batch Normal层和Dropout层,对原有的数据集进行了批归一化处理,进一步提升了对部分缺失点云模型的重构效率和精度。选取了11个点云模型的部分缺失数据信息与结构特征进行了重构实验,实验表明:在使用相同的数据集进行训练与测试的情况下,与L-Gan和PCN方法相比,该方法的重构效率更高;在11个测试类别中,该重构方法的平均值提升了12%~27%。在处理小规模模型的部分缺失重构方面效果显著,同时提高了重构的效率和精度,具有很高的实用价值。 展开更多
关键词 3D点云 深度学习 缺失重构 重构系统
在线阅读 下载PDF
多节链式倾转旋翼飞行器构形重构与策略研究
17
作者 王续乔 杨帅 《电子测量与仪器学报》 北大核心 2025年第3期125-135,共11页
多节链式倾转旋翼飞行器具有多样的本体构形形态、丰富的组合变换序列以及非唯一的构形达成解集等特点。为使飞行器在应对不同任务条件时能够获得优越的飞行性能与任务达成的重构方案,进而提高其变体执行效率和任务适应性,本文研究了多... 多节链式倾转旋翼飞行器具有多样的本体构形形态、丰富的组合变换序列以及非唯一的构形达成解集等特点。为使飞行器在应对不同任务条件时能够获得优越的飞行性能与任务达成的重构方案,进而提高其变体执行效率和任务适应性,本文研究了多节链式倾转旋翼飞行器的构形重构与策略。首先,分析了该飞行器的属性,并确定了通过性、稳定性和能耗3个关键因素作为重构策略的评价指标;其次,通过层次分析法(AHP)确定了各指标的权重,并基于加权平均法建立了重构决策方法;最后,通过实验验证了重构策略的有效性和科学性,结果表明该重构策略将综合评分平均提高了26.87%,有效改善了飞行器的性能,特别是在通过性和稳定性方面。研究结果表明,所提出的重构策略不仅提升了飞行器在复杂环境中的自适应能力,还为未来无人机技术的发展提供了重要的理论基础和实践指导。 展开更多
关键词 变体飞行器 构形重构策略 评价指标 加权平均 自适应能力
原文传递
重构与优化:后疫情时代体育公园文化生态价值研究
18
作者 郑霞 吴晓艳 蔡福键 《浙江体育科学》 2025年第1期19-26,33,共9页
在后疫情时代的背景下,随着人们健身需求的显著增长,体育公园作为核心的文化生态空间获得了新的认知与重视。本研究运用文化生态学理论,深入剖析了体育公园的文化结构要素,并基于后疫情时期其他文化形态的冲击,揭示了体育公园文化生态... 在后疫情时代的背景下,随着人们健身需求的显著增长,体育公园作为核心的文化生态空间获得了新的认知与重视。本研究运用文化生态学理论,深入剖析了体育公园的文化结构要素,并基于后疫情时期其他文化形态的冲击,揭示了体育公园文化生态所面临的挑战。研究认为,后疫情时代体育公园的文化生态需进行内容、结构及发展方向的全面革新,并在此基础上提出体育公园文化生态发展的优化路径:一是促进“个人参与—社会组织—文化氛围”的深度融合;二是建立“政府引领—市场参与—多元主体”的运行机制;三是构建“政府—行业—基层”的创新互动治理模式;四是实现“体育公园—资源再生产”的可持续良性循环。本研究从系统论的动态性和整体性视角出发,为后疫情时代体育公园的文化生态可持续发展提供了理论支撑和实践路径。 展开更多
关键词 体育公园 后疫情时代 文化结构要素 重构与优化
在线阅读 下载PDF
桥梁冲刷智能分析理论体系与技术路径
19
作者 熊文 陈钊 蔡春声 《中国公路学报》 北大核心 2025年第12期323-337,共15页
冲刷是桥梁水毁失效的重要原因之一。然而,传统冲刷分析理论虽然在数值模拟、湍流唯象等方面有新的进展,但是仍不能妥善兼顾计算精度和计算效率,难以高效准确计算冲刷平衡深度和空间形态,制约了桥梁水下安全设计与运维技术的发展。一方... 冲刷是桥梁水毁失效的重要原因之一。然而,传统冲刷分析理论虽然在数值模拟、湍流唯象等方面有新的进展,但是仍不能妥善兼顾计算精度和计算效率,难以高效准确计算冲刷平衡深度和空间形态,制约了桥梁水下安全设计与运维技术的发展。一方面,主流的平衡冲刷深度计算公式往往过于保守,与实桥测量相差较大;另一方面,经典的单相流仿真方法与水槽结果在形态和深度上仍存在不小差异,而可以更准确描述泥沙运输的两相流模型计算成本高昂。从冲刷计算公式优化、单相流和双相流智能仿真3个角度出发,通过多源数据、多维领域知识和先进人工智能算法的协同作用,提出了一套桥梁冲刷智能分析理论体系与技术路径。在相关智能化分析案例中,该理论体系与技术路径无论从计算精度、效率还是安全性、泛化能力等关键维度上,均展现出优于传统主流经验公式与仿真方法的显著优势,有效缓解了传统冲刷计算中精度与效率难以兼顾的矛盾,不仅为高精度、高效率冲刷评估提供了可行解决方案,也为桥梁全寿命周期设计与防灾减灾提供了技术支撑。 展开更多
关键词 桥梁工程 桥梁冲刷 深度学习 符号回归 公式重构 智能仿真
原文传递
联邦学习通信效率研究综述 被引量:3
20
作者 郑剑文 刘波 +1 位作者 林伟伟 谢家晨 《计算机科学》 北大核心 2025年第2期1-7,共7页
作为一种分布式机器学习范式,联邦学习(Federated Learning,FL)旨在在保护数据隐私的前提下,实现在多方数据上共同训练机器学习模型。在实际应用中,FL在每轮迭代中需要大量的通信来传输模型参数和梯度更新,从而提高通信效率,这是FL面临... 作为一种分布式机器学习范式,联邦学习(Federated Learning,FL)旨在在保护数据隐私的前提下,实现在多方数据上共同训练机器学习模型。在实际应用中,FL在每轮迭代中需要大量的通信来传输模型参数和梯度更新,从而提高通信效率,这是FL面临的一个重要挑战。文中主要介绍了FL中通信效率的重要性,并依据不同的侧重点将现有FL通信效率的研究分为客户端选择、模型压缩、网络拓扑重构以及多种技术结合等方法。在现有的FL通信效率研究的基础上,归纳并总结出通信效率在FL发展中面临的困难与挑战,探索FL通信效率未来的研究方向。 展开更多
关键词 联邦学习 通信效率 客户端选择 模型压缩 网络拓扑重构
在线阅读 下载PDF
上一页 1 2 24 下一页 到第
使用帮助 返回顶部