期刊文献+
共找到920篇文章
< 1 2 46 >
每页显示 20 50 100
Within-Project and Cross-Project Software Defect Prediction Based on Improved Transfer Naive Bayes Algorithm 被引量:3
1
作者 Kun Zhu Nana Zhang +1 位作者 Shi Ying Xu Wang 《Computers, Materials & Continua》 SCIE EI 2020年第5期891-910,共20页
With the continuous expansion of software scale,software update and maintenance have become more and more important.However,frequent software code updates will make the software more likely to introduce new defects.So... With the continuous expansion of software scale,software update and maintenance have become more and more important.However,frequent software code updates will make the software more likely to introduce new defects.So how to predict the defects quickly and accurately on the software change has become an important problem for software developers.Current defect prediction methods often cannot reflect the feature information of the defect comprehensively,and the detection effect is not ideal enough.Therefore,we propose a novel defect prediction model named ITNB(Improved Transfer Naive Bayes)based on improved transfer Naive Bayesian algorithm in this paper,which mainly considers the following two aspects:(1)Considering that the edge data of the test set may affect the similarity calculation and final prediction result,we remove the edge data of the test set when calculating the data similarity between the training set and the test set;(2)Considering that each feature dimension has different effects on defect prediction,we construct the calculation formula of training data weight based on feature dimension weight and data gravity,and then calculate the prior probability and the conditional probability of training data from the weight information,so as to construct the weighted bayesian classifier for software defect prediction.To evaluate the performance of the ITNB model,we use six datasets from large open source projects,namely Bugzilla,Columba,Mozilla,JDT,Platform and PostgreSQL.We compare the ITNB model with the transfer Naive Bayesian(TNB)model.The experimental results show that our ITNB model can achieve better results than the TNB model in terms of accurary,precision and pd for within-project and cross-project defect prediction. 展开更多
关键词 cross-project defect prediction transfer Naive Bayesian algorithm edge data similarity calculation feature dimension weight
在线阅读 下载PDF
Graph-Based Feature Learning for Cross-Project Software Defect Prediction 被引量:1
2
作者 Ahmed Abdu Zhengjun Zhai +2 位作者 Hakim A.Abdo Redhwan Algabri Sungon Lee 《Computers, Materials & Continua》 SCIE EI 2023年第10期161-180,共20页
Cross-project software defect prediction(CPDP)aims to enhance defect prediction in target projects with limited or no historical data by leveraging information from related source projects.The existing CPDP approaches... Cross-project software defect prediction(CPDP)aims to enhance defect prediction in target projects with limited or no historical data by leveraging information from related source projects.The existing CPDP approaches rely on static metrics or dynamic syntactic features,which have shown limited effectiveness in CPDP due to their inability to capture higher-level system properties,such as complex design patterns,relationships between multiple functions,and dependencies in different software projects,that are important for CPDP.This paper introduces a novel approach,a graph-based feature learning model for CPDP(GB-CPDP),that utilizes NetworkX to extract features and learn representations of program entities from control flow graphs(CFGs)and data dependency graphs(DDGs).These graphs capture the structural and data dependencies within the source code.The proposed approach employs Node2Vec to transform CFGs and DDGs into numerical vectors and leverages Long Short-Term Memory(LSTM)networks to learn predictive models.The process involves graph construction,feature learning through graph embedding and LSTM,and defect prediction.Experimental evaluation using nine open-source Java projects from the PROMISE dataset demonstrates that GB-CPDP outperforms state-of-the-art CPDP methods in terms of F1-measure and Area Under the Curve(AUC).The results showcase the effectiveness of GB-CPDP in improving the performance of cross-project defect prediction. 展开更多
关键词 cross-project defect prediction graphs features deep learning graph embedding
在线阅读 下载PDF
Unsupervised Domain Adaptation Based on Discriminative Subspace Learning for Cross-Project Defect Prediction 被引量:1
3
作者 Ying Sun Yanfei Sun +4 位作者 Jin Qi Fei Wu Xiao-Yuan Jing Yu Xue Zixin Shen 《Computers, Materials & Continua》 SCIE EI 2021年第9期3373-3389,共17页
:Cross-project defect prediction(CPDP)aims to predict the defects on target project by using a prediction model built on source projects.The main problem in CPDP is the huge distribution gap between the source project... :Cross-project defect prediction(CPDP)aims to predict the defects on target project by using a prediction model built on source projects.The main problem in CPDP is the huge distribution gap between the source project and the target project,which prevents the prediction model from performing well.Most existing methods overlook the class discrimination of the learned features.Seeking an effective transferable model from the source project to the target project for CPDP is challenging.In this paper,we propose an unsupervised domain adaptation based on the discriminative subspace learning(DSL)approach for CPDP.DSL treats the data from two projects as being from two domains and maps the data into a common feature space.It employs crossdomain alignment with discriminative information from different projects to reduce the distribution difference of the data between different projects and incorporates the class discriminative information.Specifically,DSL first utilizes subspace learning based domain adaptation to reduce the distribution gap of data between different projects.Then,it makes full use of the class label information of the source project and transfers the discrimination ability of the source project to the target project in the common space.Comprehensive experiments on five projects verify that DSL can build an effective prediction model and improve the performance over the related competing methods by at least 7.10%and 11.08%in terms of G-measure and AUC. 展开更多
关键词 cross-project defect prediction discriminative subspace learning unsupervised domain adaptation
在线阅读 下载PDF
Cross-Project Software Defect Prediction Based on SMOTE and Deep Canonical Correlation Analysis
4
作者 Xin Fan Shuqing Zhang +2 位作者 Kaisheng Wu Wei Zheng Yu Ge 《Computers, Materials & Continua》 SCIE EI 2024年第2期1687-1711,共25页
Cross-Project Defect Prediction(CPDP)is a method that utilizes historical data from other source projects to train predictive models for defect prediction in the target project.However,existing CPDP methods only consi... Cross-Project Defect Prediction(CPDP)is a method that utilizes historical data from other source projects to train predictive models for defect prediction in the target project.However,existing CPDP methods only consider linear correlations between features(indicators)of the source and target projects.These models are not capable of evaluating non-linear correlations between features when they exist,for example,when there are differences in data distributions between the source and target projects.As a result,the performance of such CPDP models is compromised.In this paper,this paper proposes a novel CPDP method based on Synthetic Minority Oversampling Technique(SMOTE)and Deep Canonical Correlation Analysis(DCCA),referred to as S-DCCA.Canonical Correlation Analysis(CCA)is employed to address the issue of non-linear correlations between features of the source and target projects.S-DCCA extends CCA by incorporating the MlpNet model for feature extraction from the dataset.The redundant features are then eliminated by maximizing the correlated feature subset using the CCA loss function.Finally,cross-project defect prediction is achieved through the application of the SMOTE data sampling technique.Area Under Curve(AUC)and F1 scores(F1)are used as evaluation metrics.This paper conducted experiments on 27 projects from four public datasets to validate the proposed method.The results demonstrate that,on average,our method outperforms all baseline approaches by at least 1.2%in AUC and 5.5%in F1 score.This indicates that the proposed method exhibits favorable performance characteristics. 展开更多
关键词 cross-project defect prediction deep canonical correlation analysis feature similarity
在线阅读 下载PDF
基于跨粒度HFLTS语义向量距离的军事评估方法
5
作者 杜秀丽 周睿 +3 位作者 程伟龙 吕亚娜 邱少明 文世喜 《火力与指挥控制》 北大核心 2026年第2期38-46,共9页
犹豫模糊语言术语集可以更好地反映专家在军事评估中的意见,但不同专家的偏好排序相同、数值差度大时,现有距离测度难以准确反映专家的实际意见。针对上述问题,引入考虑投影值的因素,定义了由犹豫度和语义值构成的二元向量,提出跨粒度... 犹豫模糊语言术语集可以更好地反映专家在军事评估中的意见,但不同专家的偏好排序相同、数值差度大时,现有距离测度难以准确反映专家的实际意见。针对上述问题,引入考虑投影值的因素,定义了由犹豫度和语义值构成的二元向量,提出跨粒度犹豫模糊语言术语集的语义向量距离,将该距离用于基于跨粒度犹豫模糊语言术语集语义向量距离的军事评估,并通过军事评估大群体决策相关案例验证可行性。 展开更多
关键词 军事评估 投影值 二元向量 跨粒度 语义向量距离
在线阅读 下载PDF
A Cluster Based Feature Selection Method for Cross-Project Software Defect Prediction 被引量:7
6
作者 Chao Ni Wang-Shu Liu +3 位作者 Xiang Chen Qing Gu Dao-Xu Chen Qi-Guo Huang 《Journal of Computer Science & Technology》 SCIE EI CSCD 2017年第6期1090-1107,共18页
Cross-project defect prediction (CPDP) uses the labeled data from external source software projects to com- pensate the shortage of useful data in the target project, in order to build a meaningful classification mo... Cross-project defect prediction (CPDP) uses the labeled data from external source software projects to com- pensate the shortage of useful data in the target project, in order to build a meaningful classification model. However, the distribution gap between software features extracted from the source and the target projects may be too large to make the mixed data useful for training. In this paper, we propose a cluster-based novel method FeSCH (Feature Selection Using Clusters of Hybrid-Data) to alleviate the distribution differences by feature selection. FeSCH includes two phases. Tile feature clustering phase clusters features using a density-based clustering method, and the feature selection phase selects features from each cluster using a ranking strategy. For CPDP, we design three different heuristic ranking strategies in the second phase. To investigate the prediction performance of FeSCH, we design experiments based on real-world software projects, and study the effects of design options in FeSCH (such as ranking strategy, feature selection ratio, and classifiers). The experimental results prove the effectiveness of FeSCH. Firstly, compared with the state-of-the-art baseline methods, FeSCH achieves better performance and its performance is less affected by the classifiers used. Secondly, FeSCH enhances the performance by effectively selecting features across feature categories, and provides guidelines for selecting useful features for defect prediction. 展开更多
关键词 software defect prediction cross-project defect prediction feature selection feature clustering density-basedclustering
原文传递
A Novel Cross-Project Software Defect Prediction Algorithm Based on Transfer Learning 被引量:5
7
作者 Shiqi Tang Song Huang +3 位作者 Changyou Zheng Erhu Liu Cheng Zong Yixian Ding 《Tsinghua Science and Technology》 SCIE EI CAS CSCD 2022年第1期41-57,共17页
Software Defect Prediction(SDP) technology is an effective tool for improving software system quality that has attracted much attention in recent years.However,the prediction of cross-project data remains a challenge ... Software Defect Prediction(SDP) technology is an effective tool for improving software system quality that has attracted much attention in recent years.However,the prediction of cross-project data remains a challenge for the traditional SDP method due to the different distributions of the training and testing datasets.Another major difficulty is the class imbalance issue that must be addressed in Cross-Project Defect Prediction(CPDP).In this work,we propose a transfer-leaning algorithm(TSboostDF) that considers both knowledge transfer and class imbalance for CPDP.The experimental results demonstrate that the performance achieved by TSboostDF is better than those of existing CPDP methods. 展开更多
关键词 Software Defect Prediction(SDP) transfer learning imbalance class cross-project
原文传递
Combined classifier for cross-project defect prediction: an extended empirical study 被引量:2
8
作者 Yun ZHANG David LO +1 位作者 Xin XIA Jianling SUN 《Frontiers of Computer Science》 SCIE EI CSCD 2018年第2期280-296,共17页
To facilitate developers in effective allocation of their testing and debugging efforts, many software defect prediction techniques have been proposed in the literature. These techniques can be used to predict classes... To facilitate developers in effective allocation of their testing and debugging efforts, many software defect prediction techniques have been proposed in the literature. These techniques can be used to predict classes that are more likely to be buggy based on the past history of classes, methods, or certain other code elements. These techniques are effective provided that a sufficient amount of data is available to train a prediction model. However, sufficient training data are rarely available for new software projects. To resolve this problem, cross-project defect prediction, which transfers a prediction model trained using data from one project to another, was proposed and is regarded as a new challenge in the area of defect prediction. Thus far, only a few cross-project defect prediction techniques have been proposed. To advance the state of the art, in this study, we investigated seven composite algorithms that integrate multiple machine learning classifiers to improve cross-project defect prediction. To evaluate the performance of the composite algorithms, we performed experiments on 10 open-source software systems from the PROMISE repository, which contain a total of 5,305 instances labeled as defective or clean. We compared the composite algorithms with the combined defect predictor where logistic regression is used as the meta classification algorithm (CODEPLogistic), which is the most recent cross-project defect prediction algorithm in terms of two standard evaluation metrics: cost effectiveness and F-measure. Our experimental results show that several algorithms outperform CODEPLogistic:Maximum voting shows the best performance in terms of F-measure and its average F-measure is superior to that of CODEPLogistic by 36.88%. Bootstrap aggregation (Bagging J48) shows the best performance in terms of cost effectiveness and its average cost effectiveness is superior to that of CODEPLogistic by 15.34%. 展开更多
关键词 defect prediction cross-project classifier combination
原文传递
Effort-aware cross-project just-in-time defect prediction framework for mobile apps 被引量:1
9
作者 Tian CHENG Kunsong ZHAO +2 位作者 Song SUN Muhammad MATEEN Junhao WEN 《Frontiers of Computer Science》 SCIE EI CSCD 2022年第6期15-29,共15页
As the boom of mobile devices,Android mobile apps play an irreplaceable roles in people’s daily life,which have the characteristics of frequent updates involving in many code commits to meet new requirements.Just-in-... As the boom of mobile devices,Android mobile apps play an irreplaceable roles in people’s daily life,which have the characteristics of frequent updates involving in many code commits to meet new requirements.Just-in-Time(JIT)defect prediction aims to identify whether the commit instances will bring defects into the new release of apps and provides immediate feedback to developers,which is more suitable to mobile apps.As the within-app defect prediction needs sufficient historical data to label the commit instances,which is inadequate in practice,one alternative method is to use the cross-project model.In this work,we propose a novel method,called KAL,for cross-project JIT defect prediction task in the context of Android mobile apps.More specifically,KAL first transforms the commit instances into a high-dimensional feature space using kernel-based principal component analysis technique to obtain the representative features.Then,the adversarial learning technique is used to extract the common feature embedding for the model building.We conduct experiments on 14 Android mobile apps and employ four effort-aware indicators for performance evaluation.The results on 182 cross-project pairs demonstrate that our proposed KAL method obtains better performance than 20 comparative methods. 展开更多
关键词 kernel-based principal component analysis adversarial learning just-in-time defect prediction cross-project model
原文传递
Cross-project software defect prediction based on multi-source data sets
10
作者 Huang Junfu Wang Yawen +1 位作者 Gong Yunzhan Jin Dahai 《The Journal of China Universities of Posts and Telecommunications》 EI CSCD 2021年第4期75-87,共13页
Cross-project defect prediction(CPDP) uses one or more source projects to build a defect prediction model and applies the model to the target project. There is usually a big difference between the data distribution of... Cross-project defect prediction(CPDP) uses one or more source projects to build a defect prediction model and applies the model to the target project. There is usually a big difference between the data distribution of the source project and the target project, which makes it difficult to construct an effective defect prediction model. In order to alleviate the problem of negative migration between the source project and the target project in CPDP, this paper proposes an integrated transfer adaptive boosting(TrAdaBoost) algorithm based on multi-source data sets(MSITrA). The algorithm uses an existing two-stage data filtering algorithm to obtain source project data related to the target project from multiple source items, and then uses the integrated TrAdaBoost algorithm proposed in the paper to build a CPDP model. The experimental results of Promise’s 15 public data sets show that: 1) The cross-project software defect prediction model proposed in this paper has better performance in all tested CPDP methods;2) In the within-project software defect prediction(WPDP) experiment, the proposed CPDP method has achieved the better experimental results than the tested WPDP method. 展开更多
关键词 cross-project defect prediction multi-source transfer adaptive boosting ensemble learning
原文传递
香港地区现代化供水体系的形成与实践
11
作者 黄恩诺 杨芳 +1 位作者 黄南冰 刘晋 《中国水利》 2026年第3期13-20,共8页
香港地区三面环海的独特自然条件使其水文情势极易受气候条件影响,加上多年来经济社会快速发展带来的高强度用水需求,香港地区水资源供需矛盾尤为突出,迫切需要加强现代化供水体系建设,以供水安全高质量保障推动经济社会高质量发展。近... 香港地区三面环海的独特自然条件使其水文情势极易受气候条件影响,加上多年来经济社会快速发展带来的高强度用水需求,香港地区水资源供需矛盾尤为突出,迫切需要加强现代化供水体系建设,以供水安全高质量保障推动经济社会高质量发展。近年来,香港地区通过工程建设、水质管控、技术迭代和制度创新,依托全港17座主要蓄水水库、184座泵站、18座水厂及环状供水管网,逐步形成以本地集水为基础、跨境调水为主体、非常规水源为补充的多源供水格局和现代化供水体系,实现了“源头—输水—制水—配水”全过程高标准水质监测和风险防控。实践证明,该体系显著提升了香港地区供水安全水平,为支撑香港地区长期繁荣稳定提供了重要水安全保障,也为粤港澳大湾区深化水资源协同治理、推动区域高质量发展注入了持久动力,尤其东江水供港这一历史性举措更是在过去60年间为香港地区带来源源不断的“生命水、政治水、经济水”,生动诠释了“一国两制”基本国策的显著制度优势和强大生命力,其经验对全球滨海高密度城市应对气候变化下水资源挑战具有重要借鉴意义。 展开更多
关键词 香港地区 现代化供水体系 东深供水 跨境水资源治理 综合效益 供水安全
在线阅读 下载PDF
大斜交现浇框架桥下穿小半径曲线铁路线路加固研究
12
作者 庞孟丽 马海涛 +1 位作者 宁正芳 周卫卫 《城市道桥与防洪》 2026年第1期207-211,共5页
为了解决大斜交现浇框架桥下穿小半径曲线铁路时,存在铁路架空范围不足,架空体系支点转换繁琐,横向架空跨度小,框架桥难以一次性浇筑且常规方法不适用此类工况的问题,提出了一种纵横梁双重架空加固体系。其中一次架空体系是对线路轨道架... 为了解决大斜交现浇框架桥下穿小半径曲线铁路时,存在铁路架空范围不足,架空体系支点转换繁琐,横向架空跨度小,框架桥难以一次性浇筑且常规方法不适用此类工况的问题,提出了一种纵横梁双重架空加固体系。其中一次架空体系是对线路轨道架空,纵梁平行于线路折线布置,横梁垂直于线路布置;二次架空体系作为一次架空体系的基础,纵梁平行框架桥布置,横抬梁垂直于纵梁布置,支撑于支点桩上。另外,采用桥梁博士V4.4建立了纵横梁双重架空加固体系的有限元空间模型,用以计算该体系的受力状态。计算结果表明,该体系的纵梁和横抬梁在施工阶段的应力及挠度均满足规范要求,可实现小半径曲线铁路线路的一次性整体架空,且横向架空跨度达13.8 m,从而避免了施工过程中架空体系支点转换及框架桥结构的二次补筑,提高了结构的整体性,可应用于实际工程。 展开更多
关键词 大斜交框架桥 小半径曲线铁路 下穿工程 纵横梁加固 有限元法
在线阅读 下载PDF
中俄东线长江盾构隧道泡沫混凝土填充创新技术与施工工艺
13
作者 张泽正 《石油工程建设》 2026年第1期88-92,共5页
中俄东线长江盾构隧道工程面临高水压、薄覆土条件下的毫米级沉降控制等严峻挑战。项目实施中创新性地采用了泡沫混凝土填充技术,该技术依托“制浆-发泡-搅拌-泵送”一体化智能装备,利用泡沫混凝土优异的流变性、轻质性与自密实性,对隧... 中俄东线长江盾构隧道工程面临高水压、薄覆土条件下的毫米级沉降控制等严峻挑战。项目实施中创新性地采用了泡沫混凝土填充技术,该技术依托“制浆-发泡-搅拌-泵送”一体化智能装备,利用泡沫混凝土优异的流变性、轻质性与自密实性,对隧道空间进行有效填充。工程实践表明,泡沫混凝土填充技术成功解决了“密填-控沉”这一核心难题,保障了隧道的长期稳定。在系统总结该技术从实验室到工程实践应用创新成果的基础上,解析其技术原理与施工工艺,长江盾构隧道工程所形成的技术和实践经验,可为未来大型穿越江海盾构隧道的工程建设提供可靠解决方案与关键技术支撑。 展开更多
关键词 中俄东线 长江盾构穿越工程 智能装备 泡沫混凝土填充技术
在线阅读 下载PDF
大数据下高职统计学与基础会计跨课程项目设计
14
作者 雷陕州 《办公自动化》 2026年第4期81-83,共3页
在大数据技术迅猛发展并深刻改变会计行业的背景下,高职院校会计专业人才培养面临新要求。传统分科教学模式割裂《统计学》与《基础会计》的内在联系,不利于学生综合能力培养。项目式学习(Project-Based Learning,PBL)应用于跨课程教学... 在大数据技术迅猛发展并深刻改变会计行业的背景下,高职院校会计专业人才培养面临新要求。传统分科教学模式割裂《统计学》与《基础会计》的内在联系,不利于学生综合能力培养。项目式学习(Project-Based Learning,PBL)应用于跨课程教学,能有效打破学科壁垒。文章围绕大数据背景下高职《统计学》与《基础会计》跨课程项目式学习展开设计,包括基于真实业务场景的项目主题设计、遵循“数据-分析-决策-反馈”闭环逻辑的四阶段递进式项目实施流程、双师协同与动态调整的教学组织与实施策略,以及多元化与过程性导向的学习评价体系,旨在培养适应大数据时代的复合型会计人才。 展开更多
关键词 大数据 高职 《统计学》 《基础会计》 跨课程项目式学习
在线阅读 下载PDF
基于多源异构数据的水利工程断面自动化成图系统研究
15
作者 黄楠 《黄河水利职业技术大学学报》 2026年第1期34-39,共6页
水利工程勘测数据结构日趋多样化、复杂化,传统断面处理软件由于存在识别能力弱、提取效率低、兼容性差等局限性,难以满足现代水利工程精细化设计和管理的需求。基于ArcGIS Engine组件式开发模型,构建了一套面向多源异构数据的水利工程... 水利工程勘测数据结构日趋多样化、复杂化,传统断面处理软件由于存在识别能力弱、提取效率低、兼容性差等局限性,难以满足现代水利工程精细化设计和管理的需求。基于ArcGIS Engine组件式开发模型,构建了一套面向多源异构数据的水利工程断面测量内业一体化处理系统。该系统解决了从不同结构数据中高效、精准地提取断面特征点的难题,实现了其与桩号自动归算、人机交互编辑和断面成图等模块的有机集成,显著提升了数据处理与成果输出的自动化水平。工程实例应用结果显示,该系统不仅操作便捷、适应性强,还在处理效率、数据兼容性和成果规范性等方面表现优异。 展开更多
关键词 水利工程 断面绘图 一体化成图系统 多源异构数据 ArcGIS Engine组件模型
在线阅读 下载PDF
无人机航空摄影三维建模在水利工程测绘中的应用
16
作者 相涛 许章平 +3 位作者 马伟丽 张亮 陈衍德 王传广 《水利水电快报》 2026年第3期70-75,共6页
为了探究无人机航空摄影三维建模在水利工程测绘中的坐标换算误差问题,以山东省菏泽市老洙水河为例,通过华测T10惯导RTK对测区进行基本平面控制和纵横断面测量,通过WILD NA2水准仪和木质双面尺进行国家四等水准测量,基于大疆Matrice 600... 为了探究无人机航空摄影三维建模在水利工程测绘中的坐标换算误差问题,以山东省菏泽市老洙水河为例,通过华测T10惯导RTK对测区进行基本平面控制和纵横断面测量,通过WILD NA2水准仪和木质双面尺进行国家四等水准测量,基于大疆Matrice 600 Pro无人机搭载睿铂RIY-DG5五镜头倾斜摄影技术构建水利工程河道三维模型。将经过四等水准测量间接平差后的控制点高程与三维模型提取的控制点高程进行对比,对三维模型进行校正后绘制数字线画图。对比采用RTK实测获取的断面与三维模型提取的断面,验证三维模型的高程和平面精度。结果表明:模型修正前控制点水准高程与模型点高程平均较差为-0.047 m,经过修正后两者之间较差为-0.001 m,修正后模型精度较高。研究成果可以为水利工程测绘提供参考。 展开更多
关键词 无人机航摄 平面高程控制 纵横断面测量 三维建模 水利工程
在线阅读 下载PDF
营养、营养状况与炎症性肠病的共同遗传基础及因果关系
17
作者 廖桂彬 吴一璇 +5 位作者 汤璟 黄金科 王俊 严梓萁 刘书君 张海燕 《中国组织工程研究》 北大核心 2026年第22期5876-5885,共10页
背景:炎症性肠病包括溃疡性结肠炎和克罗恩病,是一种与营养不良、肌肉减少症和疾病严重程度相关的慢性疾病,然而关于它们之间遗传关联及因果关系的研究有限。目的:运用先进的统计遗传学方法系统探究营养、营养状况与炎症性肠病之间的共... 背景:炎症性肠病包括溃疡性结肠炎和克罗恩病,是一种与营养不良、肌肉减少症和疾病严重程度相关的慢性疾病,然而关于它们之间遗传关联及因果关系的研究有限。目的:运用先进的统计遗传学方法系统探究营养、营养状况与炎症性肠病之间的共同遗传基础及因果关系。方法:从GWAS Catalog数据库(由美国国家人类基因组研究所和欧洲生物信息研究所共同构建,系统收录公开发表的基因组关联研究结果)下载矿物质、维生素、白蛋白、血红蛋白、脂肪酸和肌肉减少症特征(四肢瘦体质量和握力)的单核苷酸多态性数据,从R10版本FinnGen数据库(由芬兰国家基因组中心牵头构建的大规模基因组学项目)获取炎症性肠病及其亚型的数据,结合先进的统计遗传学方法,包括连锁不平衡评分回归、跨表型关联分析和孟德尔随机化,来推断营养指标、肌肉减少症与炎症性肠病之间的关联。结果与结论:此研究揭示了显著的遗传相关性:维生素D与炎症性肠病(rg=-0.080,P=0.029)以及溃疡性结肠炎(rg=-0.087,P=0.027)相关;四肢瘦体质量与炎症性肠病(rg=-0.100,P=0.0002)、溃疡性结肠炎(rg=-0.100,P=0.0002)以及小肠型克罗恩病(rg=-0.081,P=0.035)相关;握力与小肠型克罗恩病(rg=-0.125,P=0.035)相关。此外,孟德尔随机化分析表明镁水平与炎症性肠病(OR=1.41,P=0.036)以及小肠型克罗恩病(OR=1.78,P=0.035)之间存在正向因果关系。跨表型关联分析确定了共享的单核苷酸多态性,尤其是在人类白细胞抗原区域内,这些单核苷酸多态性对营养状况和炎症性肠病均有影响。研究结果进一步解释了营养、肌肉减少症和炎症性肠病之间的遗传联系,表明有针对性的营养管理可能是减缓疾病进展的关键。这项研究为提出更个性化的治疗方法提供了新视角,对炎症性肠病的预防策略具有潜在意义。 展开更多
关键词 营养 肌肉减少症 炎症性肠病 全基因组关联研究 欧洲生物信息研究所 芬兰基因组项目 连锁不平衡评分回归 跨表型关联分析 孟德尔随机化
暂未订购
渤海海峡跨海通道工程南段地应力特征与工程稳定性分析 被引量:1
18
作者 乔二伟 马秀敏 +2 位作者 郭华林 孙尧 姜景捷 《地质力学学报》 北大核心 2025年第2期197-210,共14页
渤海海峡跨海通道工程是连接山东半岛与辽东半岛重要的海上交通主线工程,沿线地应力状态是工程设计和施工决策的重要参考依据。为了准确获得工程南段地区现今地应力特征及构造应力场分布特征,在烟台市蓬莱区西南北沟镇实施了300m以浅的... 渤海海峡跨海通道工程是连接山东半岛与辽东半岛重要的海上交通主线工程,沿线地应力状态是工程设计和施工决策的重要参考依据。为了准确获得工程南段地区现今地应力特征及构造应力场分布特征,在烟台市蓬莱区西南北沟镇实施了300m以浅的水压致裂法地应力测量。结果表明:测区主导应力为水平构造应力,与东北—华北应力区其他地区相比,应力值处于中等;随测量深度增加,最大水平主应力(S_(H))、最小水平主应力(S_(h))和垂向主应力(S_(v))均呈线性增大趋势;在测量深度范围内地壳浅表层应力结构以逆断型为主,即S_(H)>S_(h)>S_(v);实测S_(H)平均方位角为N75.3°E,与华北应力区的应力场方向一致,也与其震源机制解和GPS测量揭示的区域构造应力场方向基本一致。应用库仑摩擦滑动准则和此次测量数据,初步评估了渤海海峡跨海通道工程南段地区现今地应力积累水平及其对工程稳定性的影响,认为σ_(θ_(max))区域内应力积累总体水平相对较低,工程区域地壳相对稳定。依据岩爆危险程度综合判别准则/R_(c)讨论了通道区域地下隧道工程围岩岩爆的可能性,认为该工程地下隧道发生岩爆可能性很低,隧道围岩总体稳定。研究结果为渤海海峡跨海通道工程的设计、施工等方案的优选提供了科学依据,同时也可为区域活动断裂、地震地质、区域动力学等研究提供基础数据。 展开更多
关键词 渤海海峡 跨海通道工程 水压致裂法 地应力 围岩稳定性 构造应力场
在线阅读 下载PDF
融合静态分析警告的软件缺陷预测模型及其应用研究
19
作者 吴海涛 马景悦 高建华 《计算机科学与探索》 北大核心 2025年第3期818-834,共17页
静态分析警告作为一种重要的软件质量指标,被广泛用于识别源代码中潜在的违规问题。近期的研究表明,静态分析警告在代码异味检测和即时缺陷预测中有所应用,但有关项目早期缺少提交修改记录的情况没有涉及。针对上述问题,利用三种流行的... 静态分析警告作为一种重要的软件质量指标,被广泛用于识别源代码中潜在的违规问题。近期的研究表明,静态分析警告在代码异味检测和即时缺陷预测中有所应用,但有关项目早期缺少提交修改记录的情况没有涉及。针对上述问题,利用三种流行的静态分析工具的警告信息,在原有的缺陷预测模型中融合静态分析警告这个新的度量,构建一个涵盖软件开发和代码可维护性的缺陷预测模型,并探究静态分析警告与缺陷的潜在关系,融合警告对软件缺陷预测模型性能的影响以及在跨项目场景中的影响。实验结果表明,警告数量往往与缺陷分布密切相关,呈现正相关的关系,即警告这一度量在软件缺陷预测模型中有相当大的潜力,并且在有缺陷数据中报告的警告信息往往与编码规范相关;融合警告之后,缺陷预测模型在各项目上的平均精度提高1.4%~14.7%,平均召回率提高0.2%~2.4%,平均F1提高0.3%~3.0%,平均AUC提高0.2%~1.4%。在跨项目场景中,CODE+SAW_VIF度量提供了最佳性能的缺陷预测模型,融合静态分析警告能够提升模型识别缺陷的性能。 展开更多
关键词 软件缺陷 静态分析工具 静态分析警告 代码度量 跨项目场景预测
在线阅读 下载PDF
长江盾构穿越工程用厚壁大直径18 m UOE焊管的开发
20
作者 谢仕强 侯杰廷 +1 位作者 章传国 钟桂香 《钢管》 2025年第1期26-32,共7页
介绍了长江盾构穿越工程的情况和主要技术要求,重点介绍了宝钢股份采用一贯制制造技术为长江盾构穿越工程开发的X80钢级φ1422 mm×32.1 mm UOE 18 m加长直缝埋弧焊接钢管的性能特点。分析结果表明,该钢管具有超低的C含量、较高的Mn... 介绍了长江盾构穿越工程的情况和主要技术要求,重点介绍了宝钢股份采用一贯制制造技术为长江盾构穿越工程开发的X80钢级φ1422 mm×32.1 mm UOE 18 m加长直缝埋弧焊接钢管的性能特点。分析结果表明,该钢管具有超低的C含量、较高的Mn和Nb含量,显微组织细小,具有较高的强度、韧性及良好的焊接性,满足项目要求。该加长钢管的成功开发和应用,填补了国内外穿江隧道工程用特厚、特长X80钢级大直径UOE直缝埋弧焊接钢管的空白。 展开更多
关键词 直缝埋弧焊钢管 X80钢级 UOE 加长管 长江盾构穿越工程
在线阅读 下载PDF
上一页 1 2 46 下一页 到第
使用帮助 返回顶部