期刊文献+
共找到1,787篇文章
< 1 2 90 >
每页显示 20 50 100
基于UAM的Stanford parser多层级句法标注实例评析 被引量:1
1
作者 王大鹏 《电子测试》 2013年第5S期201-202,共2页
利用集成于UAM中的Stanford parser对TEGC语料库进行句法标注,实例评析其内嵌的STNFD Parse模块的句法标注精度、错误率,分析其错误原因。
关键词 UAM STANFORD parseR 句法标注
在线阅读 下载PDF
ML-Parser:一种高效的在线日志解析方法 被引量:5
2
作者 蒲嘉宸 王鹏 汪卫 《计算机应用与软件》 北大核心 2022年第1期45-52,共8页
各种Web服务器和大数据框架每天都会生成大量日志,在服务管理中,会将原始日志转换为结构化格式,然后应用数据挖掘模型来分析服务状态,其中最为关键的步骤之一是日志解析。细粒度的解析和LCS可以提供更好的日志解析质量,而粗粒度的解析... 各种Web服务器和大数据框架每天都会生成大量日志,在服务管理中,会将原始日志转换为结构化格式,然后应用数据挖掘模型来分析服务状态,其中最为关键的步骤之一是日志解析。细粒度的解析和LCS可以提供更好的日志解析质量,而粗粒度的解析和简单的相似性度量可以达到更好的解析性能。对此,提出一个基于两层框架的在线日志解析方法(ML-Parser),可以获得更好的解析质量而又不会过多牺牲性能。实验结果表明,该方法可以有效地提升日志的解析质量,其性能可以满足大数据量下日志的解析。 展开更多
关键词 日志解析 结构提取 在线算法
在线阅读 下载PDF
基于面向对象概念的PARSER
3
作者 杨闯 费翔林 《小型微型计算机系统》 CSCD 北大核心 1996年第10期16-23,共8页
本文给出了一个骨架:如何用类以及类分层来建造一个递归下降扫描程序。使用类来组织Parser的实现有很多优点,促使程序易于理解和修改,能方便地实现从BNF生成规则到Parser生成的自动处理。
关键词 扫描程序 面向对象 parseR 程序设计
在线阅读 下载PDF
Using SVM to construct a Chinese dependency parser 被引量:1
4
作者 许云 张锋 《Journal of Zhejiang University-Science A(Applied Physics & Engineering)》 SCIE EI CAS CSCD 2006年第2期199-203,共5页
In Chinese, dependency analysis has been shown to be a powerful syntactic parser because the order of phrases in a sentence is relatively free compared with English. Conventional dependency parsers require a number of... In Chinese, dependency analysis has been shown to be a powerful syntactic parser because the order of phrases in a sentence is relatively free compared with English. Conventional dependency parsers require a number of sophisticated rules that have to be handcrafted by linguists, and are too cumbersome to maintain. To solve the problem, a parser using SVM (Support Vector Machine) is introduced. First, a new strategy of dependency analysis is proposed. Then some chosen feature types are used for learning and for creating the modification matrix using SVM. Finally, the dependency of phrases in the sentence is generated. Experiments conducted to analyze how each type of feature affects parsing accuracy, showed that the model can increase accuracy of the dependency parser by 9.2%. 展开更多
关键词 Syntactic parsing DEPENDENCY Support Vector Machine (SVM)
在线阅读 下载PDF
An Efficient Way to Parse Logs Automatically for Multiline Events
5
作者 Mingguang Yu Xia Zhang 《Computer Systems Science & Engineering》 SCIE EI 2023年第9期2975-2994,共20页
In order to obtain information or discover knowledge from system logs,the first step is to performlog parsing,whereby unstructured raw logs can be transformed into a sequence of structured events.Although comprehensiv... In order to obtain information or discover knowledge from system logs,the first step is to performlog parsing,whereby unstructured raw logs can be transformed into a sequence of structured events.Although comprehensive studies on log parsing have been conducted in recent years,most assume that one event object corresponds to a single-line message.However,in a growing number of scenarios,one event object spans multiple lines in the log,for which parsing methods toward single-line events are not applicable.In order to address this problem,this paper proposes an automated log parsing method for multiline events(LPME).LPME finds multiline event objects via iterative scanning,driven by a set of heuristic rules derived from practice.The advantage of LPME is that it proposes a cohesion-based evaluation method for multiline events and a bottom-up search approach that eliminates the process of enumerating all combinations.We analyze the algorithmic complexity of LPME and validate it on four datasets from different backgrounds.Evaluations show that the actual time complexity of LPME parsing for multiline events is close to the constant time,which enables it to handle large-scale sample inputs.On the experimental datasets,the performance of LPME achieves 1.0 for recall,and the precision is generally higher than 0.9,which demonstrates the effectiveness of the proposed LPME. 展开更多
关键词 Log parsing log management log analysis system maintenance
在线阅读 下载PDF
WT-Parser:一种有效的在线日志解析方法 被引量:1
6
作者 李修远 朱国胜 +1 位作者 孙文和 杨少龙 《长江信息通信》 2023年第5期145-149,共5页
系统日志是用于记录系统运行情况的重要数据,通过分析日志可以有效监测系统运行状态、检测系统异常。随着大数据,云计算等技术的兴起,系统日志随着系统规模的扩大也不断增加,如何实现日志自动化分析成为当前研究热点,将非结构化日志文... 系统日志是用于记录系统运行情况的重要数据,通过分析日志可以有效监测系统运行状态、检测系统异常。随着大数据,云计算等技术的兴起,系统日志随着系统规模的扩大也不断增加,如何实现日志自动化分析成为当前研究热点,将非结构化日志文本解析为结构化数据是日志分析的基础。针对大多数日志解析方法难以有效分离日志状态变量的问题,文章提出在线日志解析方法(WT-Parser),方法通过日志单词构成来筛选模板单词用于日志聚类,并采用前缀树的思想提取日志模板。实验使用五个真实的日志数据集对方法进行评估,结果表明,WT-Parser能有效区分日志的状态变量,并且在大多数数据集上都显示了更加优异的性能。 展开更多
关键词 智能运维 日志解析 异常检测 在线聚类
在线阅读 下载PDF
Safety and immunogenicity of RAZI Cov Pars(RCP)vaccine in children and adolescents aged 5-17 years:An open-label,single arm trial
7
作者 Mohammad Hossein Fallah Mehrabadi Mojtaba Noofeli +19 位作者 Saeed Kalantari Masoud Solaymani Dodaran Mohammad Hasan Rabiee Ali Eshaghi Ali Rezaei Mokarram Seyed Hossein Razaz Monireh Hajimoradi Fariba Sadeghi Fazel Ladan Mokhberalsafa Maryam Taghdiri Mohsen Bagheri Rezvan Golmoradizadeh Elahe Bahari Roya Mostafaie Maryam Raghami Derakhshani Elaheh Ghalehnovi Safdar Masoumi NiloufarGharavi Vahideh Mohseni Seyed Reza Banihashemi 《Asian Pacific Journal of Tropical Medicine》 2025年第7期302-312,共11页
Objective:To investigate the safety and immunogenicity of the RAZI Cov Pars(RCP)vaccine in children and adolescents aged 5-17 years.Methods:In this open-label,single arm trial,26 of the 68 registered volunteers met th... Objective:To investigate the safety and immunogenicity of the RAZI Cov Pars(RCP)vaccine in children and adolescents aged 5-17 years.Methods:In this open-label,single arm trial,26 of the 68 registered volunteers met the inclusion criteria.The participants reccived RCP vaccinc twice intramuscularly(on days 0 and 21)and intranasally on day 51.Safety was assessed up to 6 months after the second dose.Immunogenicity was assessed on days 35,90,and 180 by measuring ncutralizing antibody levels as well as anti-RBD and anti-S,IgG antibodies.Results:Among the 26 volunteers,22 were in the age group of 5-11 years,and 4 were in the agc group of 12-17 years.No grade 3 or higher local or systemic adverse reactions were reported one weck after vaccination.Sixabnormal laboratory findings were observed after both vaccine doses,none of which were classified as grade 3 or higher.During a total follow-up period of 3875 person-years,31 adverse events were recorded(incidence rate:0.008).The scroconversion rates for VNT,anti-RBD and anti-S:IgGantibodies two wecks after recciving the second dose were 72.7%,76.2%and 80.9%,respectively.In the 5-11 year agc group,the scroconversion rates for VNT,anti-RBDand anti-S_(1) were 78.9%,83.3%and 88.9%,respectively.Conclusions:Intramuscular and intranasal administration of the RCPvaccine did not lead to scrious adverse events in any of the children or adolescents.The vaccine clicited a robust response in the 5-11 year age group two wecks after the second dose.Considering that this group reccived half of the adult vaccine dose,these results support the suitability of this dose for the study group. 展开更多
关键词 RAZI Cov pars vaccine TRIAL Children Adolescent
暂未订购
Macular epiretinal membrane in high myopia:timing and prognosis of pars plana vitrectomy surgery
8
作者 Yu-Tong Xia Jia-Yun Ge +5 位作者 Zong-Chan Zhang Li-Yue Zhang Ying-Ying Wen Ying Xie Ye Shen Jian-Ping Tong 《International Journal of Ophthalmology(English edition)》 2025年第9期1689-1696,共8页
AIM:To investigate the outcomes and prognosis of macular epiretinal membrane(ERM)after pars plana vitrectomy(PPV)in patients with high myopia(HM),focusing on the optimal timing of surgery and its impact on prognosis.M... AIM:To investigate the outcomes and prognosis of macular epiretinal membrane(ERM)after pars plana vitrectomy(PPV)in patients with high myopia(HM),focusing on the optimal timing of surgery and its impact on prognosis.METHODS:The clinical data of 50 eyes from 49 patients diagnosed with ERM,who were highly myopic and underwent PPV were retrospectively analyzed.The patients with ERM were classified into five groups based on the characteristics associated with different levels of myopic traction maculopathy.Group 1:Simple ERM without complex vertical and tangential direction traction on retina on optical coherence tomography(OCT)image;Group 2:ERM with obvious macular foveal schisis,without macular hole(MH);Group 3:ERM with inner lamellar MH,with or without macular foveal schisis;Group 4:ERM with outer lamellar MH,with or without foveal retinal detachment(RD);Group 5:ERM with full-thickness MH.Baseline characteristics,changes in best corrected visual acuity(BCVA)before and after surgery,and anatomical characteristics through spectral domain OCT were compared.RESULTS:The 50 eyes were followed for 6mo,with an average age of 58.66y and an average axial length(AL)of 28.69 mm.Among the five groups,postoperative logMAR BCVA improved(P<0.05).Group 1 had better mean BCVA at baseline(0.59±0.36)and at 6mo postoperatively(0.16±0.22)compared to the other groups,while Group 5 had worse mean BCVA at baseline(1.68±0.45)and at 6mo postoperatively(1.27±0.64).There were no statistically significant differences in sex,age or AL between the groups(P>0.05).OCT showed that Groups 4 and 5 exhibited poorer macular anatomy compared to the other three groups,as evidenced by lower rates of central retinal reattachment(64.3%in Group 4,86.7%in Group 5)and integrity of the inner segment/outer segment of photoreceptor junction(28.6%in Group 4,26.7%in Group 5).CONCLUSION:PPV is an effective treatment for ERM in patients with HM.All groups showed postoperative improvement in BCVA compared to preoperative levels,demonstrating the necessity of surgical intervention.Early intervention,particularly before the fourth stage of the disease,may lead to better visual outcomes. 展开更多
关键词 epiretinal membrane myopic traction maculopathy pars plana vitrectomy high myopia visual acuity
原文传递
Rapid-onset neovascular glaucoma following cataract surgery in diabetes:outcomes of pars plana vitrectomy combined with Ahmed glaucoma valve implantation
9
作者 Hui-Ping Yao Ya-Nuo Wang +3 位作者 Yan-Wei Chen Sha Gao Yi-Sheng Zhong Xi Shen 《International Journal of Ophthalmology(English edition)》 2025年第9期1665-1672,共8页
AIM:To present a case series of rapid-onset neovascular glaucoma(NVG)accompanied by vitreous haemorrhage(VH)following cataract surgery in diabetic patients,and to evaluate the efficacy of pars plana vitrectomy(PPV)com... AIM:To present a case series of rapid-onset neovascular glaucoma(NVG)accompanied by vitreous haemorrhage(VH)following cataract surgery in diabetic patients,and to evaluate the efficacy of pars plana vitrectomy(PPV)combined with Ahmed glaucoma valve(AGV)implantation.METHODS:This is a retrospective,single-center,consecutive case series.All patients underwent 23-gauge PPV with AGV implantation 2–3d after intravitreal ranibizumab injection(IVR).The minimum postoperative follow-up period lasted 12mo.The primary outcome measures included bestcorrected visual acuity(BCVA),intraocular pressure(IOP),and topical hypotensive medications.RESULTS:Fifteen diabetic patients(age,46–81y)with rapid-onset NVG and VH following uncomplicated phacoemulsification were included.The median time to the initial NVG diagnosis following cataract surgery was within 4wk.After PPV combined with AGV implantation,the mean BCVA(logMAR)improved from 1.9(range:1.0 to 2.6)preoperatively to 1.2(range:0.2 to 2.6)at the final follow-up.Baseline BCVA and the presence of diabetic nephropathy(DN)were significantly associated with the final BCVA in the multiple regression model.The mean postoperative IOP at all follow-up visits was significantly reduced compared to baseline.At the final follow-up,9 patients required one or two topical ocular hypotensive medications,while the other 6 needed not.Success was achieved in 87%,and the reoperation rate was 20%.The majority of NVG cases(9/15)were primarily attributed to the rapid progression of proliferative diabetic retinopathy.However,a notable subset(6 eyes)was complicated retinal vein occlusion or carotid artery occlusion.CONCLUSION:PPV combined with AGV implantation after adjuvant IVR for rapid-onset NVG with VH following diabetic cataract surgery is one of the safe and effective treatments.Baseline BCVA and preexisting DN may be potential indicators for visual outcomes. 展开更多
关键词 diabetic retinopathy neovascular glaucoma pars plana vitrectomy Ahmed glaucoma valve implantation
原文传递
PARS评分法在麻醉恢复室的应用 被引量:9
10
作者 吕凯 陈肖敏 祁海鸥 《护士进修杂志》 北大核心 2008年第10期882-883,共2页
目的探讨PARS评分法在麻醉恢复室(PACU)中的应用价值。方法将收入PACU的2 562例全麻术后患者分成老年组、中年组和青年组三组,运用PARS评分法分别对患者进行出室和入室评分,同时观察、记录患者在PACU期间的相关生命指征和留室时间。结... 目的探讨PARS评分法在麻醉恢复室(PACU)中的应用价值。方法将收入PACU的2 562例全麻术后患者分成老年组、中年组和青年组三组,运用PARS评分法分别对患者进行出室和入室评分,同时观察、记录患者在PACU期间的相关生命指征和留室时间。结果老、中、青三组入室时的评分分别为2.1±1.5、3.2±1.6和4.1±1.4,出室时的评分则分别提高至7.3±1.3、8.4±0.8和8.6±0.5,差异有显著意义(t1=6.28,t2=6.16,t3=5.75,P<0.01)。老年组留室时间最长。指标的相关性分析显示,出室评分与入室评分呈显著正相关(r=0.446,P<0.01),与留室时间呈负相关(r=-0.392,P<0.05)。ASA评级分别与入室、出室评分呈显著负相关(r=-0.362,P<0.01和r=-0.413,P<0.01),与留室时间呈正相关(r=0.370,P<0.05)。结论PARS评分法可以定量地判断患者的恢复情况,提高PACU护理工作的预见性,对于指导治疗、保障全麻术后病人的安全具有十分重要的意义,是一种科学、有效的评估方法。 展开更多
关键词 pars评分法 麻醉恢复室 护理管理
暂未订购
利用RNAi抑制PARs防治脑缺血性损伤的实验研究 被引量:2
11
作者 王莹 祝萍 +4 位作者 王昆祥 姜海智 王旭东 姜宏佺 郑永慧 《现代生物医学进展》 CAS 2011年第22期4256-4259,共4页
目的:利用RNA干扰技术,通过重组腺病毒导入,抑制脑组织中PARs基因的表达,观察神经功能缺陷评分、缺血脑组织梗死体积的变化,为缺血性脑血管疾病的基因治疗提供实验依据。方法:雄性Wistar大鼠随机分组,以重组腺病毒介导的无序PARs基因sh... 目的:利用RNA干扰技术,通过重组腺病毒导入,抑制脑组织中PARs基因的表达,观察神经功能缺陷评分、缺血脑组织梗死体积的变化,为缺血性脑血管疾病的基因治疗提供实验依据。方法:雄性Wistar大鼠随机分组,以重组腺病毒介导的无序PARs基因shRNA片段、生理盐水进行干预,干预3天后以线栓法建立Wistar大鼠大脑中动脉永久闭塞模型,各组分别于线栓后24h、72h进行神经功能缺陷评分并断头取脑,应用4%TTC染色测脑梗死体积。结果:1.缺血后24h、72h同一时间点:①实验组分别与对照组、生理盐水组对比,神经功能缺陷评分明显降低(P<0.05),脑梗死体积明显减小(P<0.05);②对照组与生理盐水组对比,神经功能缺陷评分、脑梗死体积无明显差异(P>0.05)。2.各组组内缺血后24h、72h对比,神经功能缺陷评分、脑梗死体积各组均有明显差异(P<0.05)。结论:重组腺病毒介导的RNAi能有效抑制脑组织中PARs基因的表达,缩小脑梗死体积,改善神经功能缺陷评分。 展开更多
关键词 RNAI pars 重组腺病毒 脑缺血
原文传递
IL-29对胰蛋白酶诱导的肥大细胞PARs表达的调节作用 被引量:5
12
作者 隋丽 陈冬 +1 位作者 张慧云 何韶衡 《中国免疫学杂志》 CAS CSCD 北大核心 2014年第5期609-612,622,共5页
目的:检测白细胞介素29(Interleukin-29,IL-29)对胰蛋白酶引起的肥大细胞蛋白酶激活受体(Protease activated receptor,PAR)-1,2,3,4表达的调节作用。方法:P815肥大细胞培养后,用不同浓度的IL-29、胰蛋白酶单独或联合激发肥大细胞,在不... 目的:检测白细胞介素29(Interleukin-29,IL-29)对胰蛋白酶引起的肥大细胞蛋白酶激活受体(Protease activated receptor,PAR)-1,2,3,4表达的调节作用。方法:P815肥大细胞培养后,用不同浓度的IL-29、胰蛋白酶单独或联合激发肥大细胞,在不同时间点收集激发细胞,用流式细胞术(FCM)及实时定量PCR检测P815肥大细胞蛋白酶激活受体的表达。结果:IL-29单独作用能够下调肥大细胞PAR-1蛋白及mRNA水平的表达,上调PAR-3、PAR-4 mRNA的表达,与对照组相比差异有统计学意义(P<0.05);以IL-29预处理肥大细胞后,IL-29对胰蛋白酶诱导的肥大细胞PAR-2、PAR-3、PAR-4表达起促进作用,与对照组相比差异具有统计学意义(P<0.05)。结论:IL-29能够调节胰蛋白酶引起的肥大细胞PARs表达,从而参与肥大细胞相关的炎症反应。 展开更多
关键词 肥大细胞 白细胞介素29(IL-29) 胰蛋白酶 蛋白酶激活受体(pars) 流式细胞术
暂未订购
艾叶的质量控制现状及质量标志物预测分析
13
作者 赵越 赵旭 +2 位作者 汪坤 宿婷婷 彭国仕 《中国医院药学杂志》 北大核心 2026年第3期339-348,共10页
艾叶作为我国药典收录的重要中药材,其化学成分十分复杂,涵盖挥发油、黄酮类、萜类及酚酸等化合物。现代研究表明艾叶具有镇痛、抗菌、抗病毒、止血、平喘、祛痰等多种药理作用。该文基于中药质量标志物的这一概念,从植物亲缘学、不同... 艾叶作为我国药典收录的重要中药材,其化学成分十分复杂,涵盖挥发油、黄酮类、萜类及酚酸等化合物。现代研究表明艾叶具有镇痛、抗菌、抗病毒、止血、平喘、祛痰等多种药理作用。该文基于中药质量标志物的这一概念,从植物亲缘学、不同陈化年限、不同产地及不同采收期、不同炮制方法、化学成分可测性、网络药理学、成分与药效这7个维度对艾叶质量标志物进行预测,为全面科学地建立艾叶质量控制标准提供了理论支撑,可满足临床精准、安全用药的需求。 展开更多
关键词 艾叶 质量控制 质量标志物 预测分析
原文传递
基于文本答案融合与句法依存分析的问题生成模型
14
作者 李先铭 张灵 《计算机应用与软件》 北大核心 2026年第1期202-209,共8页
先前的问题生成研究主要使用基于循环神经网络构建的seq2seq框架,忽略了答案信息和文本中蕴含的句法信息。为了解决上述问题,提出一种基于文本答案融合与句法依存分析的问题生成模型(ACFDP)。在编码阶段使用门控图卷积神经网络捕获文本... 先前的问题生成研究主要使用基于循环神经网络构建的seq2seq框架,忽略了答案信息和文本中蕴含的句法信息。为了解决上述问题,提出一种基于文本答案融合与句法依存分析的问题生成模型(ACFDP)。在编码阶段使用门控图卷积神经网络捕获文本的句法依存关系,同时利用互注意力耦合输入的文本和答案。模型通过关注答案信息和文本的句法依存关系来生成更贴近答案的高质量问句。此外,还利用强化学习进一步提升了模型的表现。在公开数据集SQuAD上的实验结果表明,该方法在评价指标BLEU-4和ROUGE-L上的表现优于基线模型。 展开更多
关键词 问题生成 互注意力 句法依存分析 强化学习
在线阅读 下载PDF
基于动态卷积和超图交互的多实例人体解析方法
15
作者 黄荣 袁家奇 +2 位作者 刘浩 蒋学芹 周树波 《控制与决策》 北大核心 2026年第1期276-288,共13页
多实例人体解析旨在分割自然场景图像中的多个人体实例及其部件.现有方法通常依赖静态卷积核并行地分割部件和实例,导致部件与实例特征缺乏关联难以适应人体姿态和服装外观的多样性.针对该问题,提出一种基于动态卷积与超图交互的多实例... 多实例人体解析旨在分割自然场景图像中的多个人体实例及其部件.现有方法通常依赖静态卷积核并行地分割部件和实例,导致部件与实例特征缺乏关联难以适应人体姿态和服装外观的多样性.针对该问题,提出一种基于动态卷积与超图交互的多实例人体解析方法.首先,将分割目标划分为部件、半身、实例3种层次,并对应地配置可学习的动态卷积核;同时,设计多尺度掩码注意力机制来引导各层次动态卷积核聚合图像特征,以适应人体姿态和服装外观的多样性.然后,提出超图交互模块,将部件动态卷积核作为节点,实例和半身动态卷积核作为超边,以刻画人体结构先验.最后,通过超图上的消息传递来实现部件与实例间的特征交互.实验结果表明,所提出方法在MHP-v2.0、CIHP和Densepose数据集上可超越多种基线方法,在AP_(50)^(p)、AP_(vol)^(p)和PCP_(50)三个指标上分别平均地提升了14.6%、5.8%和10.7%.进一步地,消融和可视化实验结果验证了动态卷积核和超图交互模块的有效性. 展开更多
关键词 多实例人体解析 动态卷积核 超图交互 人体结构化先验 掩码注意力
原文传递
一种基于向量化模型的日志解析方法
16
作者 高禧安 田金鹏 《计量与测试技术》 2026年第2期167-171,共5页
针对现有日志解析方法存在泛化能力较差和准确率较低等问题,本文提出一种基于深度学习的日志解析方法SSLogs,以预训练的字符级序列化聚类神经网络为基础,通过日志预处理、SBert分词和向量化等,与深度学习模型相融合,实现从采集端到输出... 针对现有日志解析方法存在泛化能力较差和准确率较低等问题,本文提出一种基于深度学习的日志解析方法SSLogs,以预训练的字符级序列化聚类神经网络为基础,通过日志预处理、SBert分词和向量化等,与深度学习模型相融合,实现从采集端到输出端的日志解析。同时,在14个公开数据集上进行实验。结果表明,该方法的分组准确率和解析准确率均优于现有主流方法,且稳定性较高。 展开更多
关键词 日志解析 向量化模型 深度学习
在线阅读 下载PDF
蛋白酶激活受体(PARs)与肿瘤转移
17
作者 胡红心 周红 《江苏大学学报(医学版)》 CAS 2006年第3期258-261,264,共5页
关键词 蛋白酶激活受体(pars) 信号转导 肿瘤转移
暂未订购
一种面向多架构嵌入式处理器的通用程序解析与测试覆盖分析技术
18
作者 彭亮 申彪 +1 位作者 白龙浩 王亚飞 《航天控制》 2026年第1期7-14,共8页
介绍了一种面向多架构嵌入式处理器的通用程序解析与测试覆盖分析技术,包括面向不同架构编译器的程序信息解析和通用数据存储结构、一种快速的程序信息检索算法和通用测试覆盖率分析架构。以新一代运载火箭型号箭上的多个嵌入式软件为... 介绍了一种面向多架构嵌入式处理器的通用程序解析与测试覆盖分析技术,包括面向不同架构编译器的程序信息解析和通用数据存储结构、一种快速的程序信息检索算法和通用测试覆盖率分析架构。以新一代运载火箭型号箭上的多个嵌入式软件为验证目标,开展本文各技术点的验证工作,验证结果表明本方法兼容多种编译器规范和处理器架构,提供的通用覆盖率测试框架可以兼容主流嵌入式处理器测试覆盖分析需求。本文提出的方法具备可扩展性,将来可以拓展应用在新目标处理器架构的软件上。 展开更多
关键词 程序解析 航天嵌入式软件 通用存储结构 覆盖率
原文传递
采用双仿射注意力的英文AMR解析模型
19
作者 尤海滨 许晶晶 +1 位作者 康泽民 王华珍 《华侨大学学报(自然科学版)》 2026年第2期213-221,共9页
针对抽象语义表示(AMR)解析在复杂句法与长距离依赖,尤其是主从层次关系建模不足的问题,提出结合双仿射注意力与多通道图卷积网络(GCN)的端到端模型。首先,通过双仿射注意力对词对进行关系特定打分,构建按关系类型分通道的邻接张量;然后... 针对抽象语义表示(AMR)解析在复杂句法与长距离依赖,尤其是主从层次关系建模不足的问题,提出结合双仿射注意力与多通道图卷积网络(GCN)的端到端模型。首先,通过双仿射注意力对词对进行关系特定打分,构建按关系类型分通道的邻接张量;然后,多通道图卷积在各通道上进行消息传递并跨通道聚合,生成结构感知的节点表示。结果表明:在AMR 2.0、AMR 3.0数据集上的Smatch分别为85.6、84.3,相较于基线模型SPRING,分别提升了1.8%、2.6%;文中模型能够更准确地捕捉层次化依赖与头尾关系,在复杂句法场景下表现出良好的稳健性与应用潜力。 展开更多
关键词 语义解析 抽象语义表示 序列到序列模型 自然语言处理
在线阅读 下载PDF
农田环境信息遥感监测研究进展
20
作者 付虹雨 纪雄辉 +4 位作者 谢运河 柳赛花 孙曼文 薛涛 潘淑芳 《农业环境科学学报》 北大核心 2026年第2期288-300,共13页
农田环境信息遥感监测对指导农业生产、加强资源管理和促进生态保护等具有重要作用,在农业智能化、信息化转型过程中扮演着关键角色。本文从平台、技术、应用3个方面梳理了农田环境遥感监测的研究进展:首先对比分析了不同遥感平台的技... 农田环境信息遥感监测对指导农业生产、加强资源管理和促进生态保护等具有重要作用,在农业智能化、信息化转型过程中扮演着关键角色。本文从平台、技术、应用3个方面梳理了农田环境遥感监测的研究进展:首先对比分析了不同遥感平台的技术特点与发展趋势;然后详细介绍了农田环境信息遥感监测过程中传感器技术、光谱分析技术及人工智能数据解析技术的研究现状;最后归纳总结了遥感技术在农田环境监测中的典型应用案例,并对未来发展提出展望。 展开更多
关键词 遥感 农田环境信息 传感器技术 信息解析技术 土壤环境监测
在线阅读 下载PDF
上一页 1 2 90 下一页 到第
使用帮助 返回顶部