高级搜索

留言板

尊敬的读者、作者、审稿人, 关于本刊的投稿、审稿、编辑和出版的任何问题, 您可以本页添加留言。我们将尽快给您答复。谢谢您的支持!

姓名
邮箱
手机号码
标题
留言内容
验证码

标签噪声下融合信息分类处理和多尺度鲁棒学习的空中目标意图识别方法

宋子豪 周焰 蔡益朝 程伟 袁凯 黎慧

宋子豪, 周焰, 蔡益朝, 程伟, 袁凯, 黎慧. 标签噪声下融合信息分类处理和多尺度鲁棒学习的空中目标意图识别方法[J]. 电子与信息学报. doi: 10.11999/JEIT241074
引用本文: 宋子豪, 周焰, 蔡益朝, 程伟, 袁凯, 黎慧. 标签噪声下融合信息分类处理和多尺度鲁棒学习的空中目标意图识别方法[J]. 电子与信息学报. doi: 10.11999/JEIT241074
SONG Zihao, ZHOU Yan, CAI Yichao, CHENG Wei, YUAN Kai, LI Hui. Aerial Target Intention Recognition Method Integrating Information Classification Processing and Multi-scale Embedding Graph Robust Learning with Noisy Labels[J]. Journal of Electronics & Information Technology. doi: 10.11999/JEIT241074
Citation: SONG Zihao, ZHOU Yan, CAI Yichao, CHENG Wei, YUAN Kai, LI Hui. Aerial Target Intention Recognition Method Integrating Information Classification Processing and Multi-scale Embedding Graph Robust Learning with Noisy Labels[J]. Journal of Electronics & Information Technology. doi: 10.11999/JEIT241074

标签噪声下融合信息分类处理和多尺度鲁棒学习的空中目标意图识别方法

doi: 10.11999/JEIT241074
详细信息
    作者简介:

    宋子豪:男,博士生,研究方向为深度学习、态势智能认知

    周焰:男,教授,博士生导师,研究方向为态势智能认知、数据融合

    蔡益朝:男,教授,博士生导师,研究方向为态势感知、智能数据关联

    程伟:男,副教授,硕士生导师,研究方向为深度学习、雷达通信一体化

    袁凯:男,博士生,研究方向为强化学习、无人机集群控制

    黎慧:女,教授,研究方向为数据融合

    通讯作者:

    周焰 songzh@88.com

  • 中图分类号: TN911.7; TP183; TP391.4

Aerial Target Intention Recognition Method Integrating Information Classification Processing and Multi-scale Embedding Graph Robust Learning with Noisy Labels

  • 摘要: 针对传统深度学习意图识别方法难以在噪声标签存在时获得可靠模型的问题,该文提出基于信息分类处理(ICP)网络和多尺度鲁棒学习的空中目标意图识别(ATIR)方法。首先,基于空中目标属性性质,构建基于ICP的编码器,以获得更具可分性的嵌入;随后,设计了从精细到粗糙的跨尺度嵌入融合机制,利用不同尺度的目标序列,训练多个编码器来学习判别模式;同时,利用不同尺度的互补信息,以交叉教学的方式训练每个编码器,以选择小损失样本作为干净标签;对于未选定的大损失样本,基于多尺度嵌入图和说话者-倾听者标签传播算法(SLPA),使用干净样本的标签进行校正。在不同标签噪声类型、多级噪声水平的ATIR数据集上的实验结果表明,该方法的测试准确率和Macro F1分数显著优于其他基线方法,说明其具有更强的噪声标签鲁棒性。
  • 图  1  对称噪声标签及非对称噪声标签转移矩阵示意图

    图  2  方法整体架构

    图  3  ICP网络架构

    图  4  交互式特征融合

    图  5  非对称噪声转移矩阵设置

    图  6  对称噪声占比为20%时已训练模型输出嵌入的t-SNE可视化结果

    图  7  对称噪声占比为50%时已训练模型输出嵌入的t-SNE可视化结果

    图  8  干净和带噪声样本损失值变化情况

    图  9  干净和噪声标签样本损失分布情况

    1  信息分类处理网络

     输入:空中目标属性训练集$ {\boldsymbol{\mathcal{D}}} = \left\{ {{\boldsymbol{\mathcal{X}}},{\boldsymbol{\mathcal{Y}}}} \right\} = \left\{ {\left( {{{\boldsymbol{X}}_i},{y_i}} \right)} \right\}_{i = 1}^N $;迭
     代次数T
     输出:空中目标属性嵌入集${\boldsymbol{E}} = \left\{ {{{\boldsymbol{E}}^i}} \right\}_{i = 1}^N$
     (1) 构建BaseNet1, BaseNet2, BaseNet3
     (2) 令K1, K2, K3分别表示BaseNet1,BaseNet2, BaseNet3的支路网
     络数量
     (3) 初始化所有BaseNet的参数θ
     (4) epoch$ \leftarrow $0
     (5) While epoch < T do
     (6)  for i = 1:N do
     (7)   for j = 1:3 do
     (8)    for k = 1:Kj do
     (9)     ${\boldsymbol{E}}_{j,k}^i = {\text{BaseNe}}{{\text{t}}_{j,k}}({{\boldsymbol{X}}_{i,j}})$ //通过BaseNetjk个支
           路网络处理特征,获得基础特征
     (10)     if Kj≥2 do
     (11)      ${\boldsymbol{E}}_{j,{\mathrm{f}}}^i = {\left( {{\text{Fusio}}{{\text{n}}_j}} \right)^{{K_j} - 1}}\left( {{\boldsymbol{E}}_{j,1}^i,{\boldsymbol{E}}_{j,2}^i, \cdots ,{\boldsymbol{E}}_{j,{K_j}}^i} \right)$
            //融合特征
     (12)     else do
     (13)      ${\boldsymbol{E}}_{j,{\mathrm{f}}}^i = {\boldsymbol{E}}_{j,1}^i$
     (14)    end
     (15)   end
     (16)   ${{\boldsymbol{E}}^i} = {\text{Linear}}\left( {{\text{CONCAT}}({\boldsymbol{E}}_{1,{\mathrm{f}}}^i,{\boldsymbol{E}}_{2,{\mathrm{f}}}^i,{\boldsymbol{E}}_{3,{\mathrm{f}}}^i)} \right)$
     (17) end
     (18) epoch = epoch + 1
     (19) end
    下载: 导出CSV

    2  噪声标签下融合ICP编码器和多尺度鲁棒学习的意图识别模型学习范式

     输入:ICP编码器 [ICPA, ICPB, ICPC],分类器[ClassifierA, ClassifierB, ClassifierC],精细尺度目标属性序列XA,中等尺度目标属性序列
     XB,粗糙尺度目标属性序列XC
     输出:[ICPA, ICPB, ICPC]和[ClassifierA, ClassifierB, ClassifierC]
     (1) 获得单个尺度嵌入 rArBrC
       rA = ICPA(XA),rB = ICPB(XB),rC = ICPC(XC);
     (2) 获得跨尺度融合嵌入vA,vB,vC
        vA = rA,vB = 式(11)(rB, vA),vC = 式(11)(rC, vB);
     (3) 获得用于交叉学习训练的干净标签yA,yB,yC
       yA = ClassifierC(vC) //利用小损失标准;
       yB = ClassifierA(vA) //利用小损失标准;
       yC = ClassifierB(vB) //利用小损失标准;
     (4) 获得用于分类训练的修正标签 ycA,ycB,ycC
       ycA = SLPA(vA, yA),ycB = SLPA(vB, yB),ycC = SLPA(vC, yC);
     (5) 参数更新;
       计算交叉熵损失CrossEntropy(vA, yA &ycA)并更新ICP编码器 ICPA和分类器ClassifierA
       计算交叉熵损失CrossEntropy(vB, yB &ycB)并更新ICP编码器ICPB和分类器ClassifierB
       计算交叉熵损失CrossEntropy(vC, yC &ycC)并更新ICP编码器ICPC和分类器ClassifierC
    下载: 导出CSV

    表  1  基准方法对比实验结果(%)

    方法 指标 Sym, 20% Sym, 50% Asym, 40%
    CE Acc 81.15 68.13 50.15
    M F1 80.36 64.05 48.56
    Mixup Acc 82.66 72.88 41.67
    M F1 82.25 72.40 42.18
    Mixup-BMM Acc 80.16 67.03 55.26
    M F1 79.63 66.68 52.54
    Co-teaching Acc 91.78 75.65 61.35
    M F1 91.61 75.46 61.22
    SIGUA Acc 80.08 74.91 67.13
    M F1 79.79 74.98 66.37
    SREA Acc 80.16 67.45 78.54
    M F1 78.98 61.51 77.51
    CTW Acc 87.78 80.36 79.76
    M F1 87.63 79.53 79.36
    Sel-CL Acc 78.15 73.01 68.52
    M F1 77.69 71.26 66.18
    本文 Acc 92.77 84.01 83.77
    M F1 92.99 84.11 83.72
    下载: 导出CSV

    表  2  编码器采用不同网络架构时的意图识别性能(%)

    网络架构 指标 Sym, 0% Sym, 20%
    FCL Acc 89.26 89.22
    M F1 89.23 89.01
    FCN Acc 92.60 90.49
    M F1 92.58 90.26
    GRU Acc 91.23 90.75
    M F1 91.37 91.13
    1DCNN_BiLSTM Acc 90.06 90.50
    M F1 90.16 90.44
    ICP Acc 96.13 92.77
    M F1 96.00 92.99
    下载: 导出CSV

    表  3  消融实验结果(%)

    方法 指标 Sym, 20% Sym, 50% Asym, 40%
    本文 Acc 92.77 84.01 83.77
    M F1 92.99 84.11 83.72
    w/o cross-scale fusion Acc 92.71 73.08 69.83
    M F1 92.82 74.34 64.48
    w/o downsampling Acc 91.41 78.61 68.15
    M F1 91.28 77.79 67.09
    w/o graph learning Acc 91.03 80.64 81.46
    M F1 91.09 80.45 77.74
    replace SLPA with LPA Acc 90.86 83.26 81.02
    M F1 90.54 83.10 80.47
    w/o momentum update Acc 91.77 82.95 74.28
    M F1 91.88 82.46 70.70
    w/o dynamic threshold Acc 93.10 77.39 78.91
    M F1 93.17 76.47 75.83
    下载: 导出CSV

    表  4  20%对称噪声标签占比下、不同尺度数目取值时的准确率(%)

    尺度数目 Acc
    2 0.904 4
    3 0.927 7
    4 0.903 2
    5 0.908 2
    下载: 导出CSV

    表  5  20%对称噪声标签占比下、不同动量更新增量取值时的准确率(%)

    动量更新增量 Acc
    0.99 0.911 2
    0.90 0.927 7
    0.75 0.903 2
    0.50 0.905 3
    下载: 导出CSV

    表  6  20%对称噪声标签占比下、不同最近邻数量取值时的准确率(%)

    最近邻数量 Acc
    5 0.911 1
    10 0.927 7
    15 0.913 6
    下载: 导出CSV

    表  7  20%对称标签占比下、SLPA中不同阈值取值时的准确率(%)

    SLPA中阈值 Acc
    0.5 0.921 1
    0.6 0.927 7
    0.7 0.910 5
    下载: 导出CSV

    表  8  20%对称噪声标签占比下、不同γ取值时的准确率(%)

    γ Acc
    0.99 0.927 7
    0.95 0.903 4
    0.90 0.901 1
    0.80 0.897 2
    下载: 导出CSV
  • [1] AHMED A A and MOHAMMED M F. SAIRF: A similarity approach for attack intention recognition using fuzzy min-max neural network[J]. Journal of Computational Science, 2018, 25: 467–473. doi: 10.1016/j.jocs.2017.09.007.
    [2] AKRIDGE C. On advanced template-based interpretation as applied to intention recognition in a strategic environment[D]. [Master dissertation], University of Central Florida, 2007.
    [3] GONZALEZ A J, GERBER W J, DEMARA R F, et al. Context-driven near-term intention recognition[J]. The Journal of Defense Modeling and Simulation, 2004, 1(3): 153–170. doi: 10.1177/875647930400100303.
    [4] CHARNIAK E and GOLDMAN R P. A Bayesian model of plan recognition[J]. Artificial Intelligence, 1993, 64(1): 53–79. doi: 10.1016/0004-3702(93)90060-O.
    [5] YU Quan, SONG Jinyu, YU Xiaohan, et al. To solve the problems of combat mission predictions based on multi-instance genetic fuzzy systems[J]. The Journal of Supercomputing, 2022, 78(12): 14626–14647. doi: 10.1007/s11227-022-04388-5.
    [6] SVENMARCKT P and DEKKER S. Decision support in fighter aircraft: From expert systems to cognitive modelling[J]. Behaviour & Information Technology, 2003, 22(3): 175–184. doi: 10.1080/0144929031000109755.
    [7] MENG Guanglei, ZHAO Runnan, WANG Biao, et al. Target tactical intention recognition in multiaircraft cooperative air combat[J]. International Journal of Aerospace Engineering, 2021, 2021: 9558838. doi: 10.1155/2021/9558838.
    [8] TRABOULSI A and BARBEAU M. Recognition of drone formation intentions using supervised machine learning[C]. 2019 International Conference on Computational Science and Computational Intelligence, Las Vegas, USA, 2019: 408–411. doi: 10.1109/CSCI49370.2019.00079.
    [9] 胡智勇, 刘华丽, 龚淑君, 等. 基于随机森林的目标意图识别[J]. 现代电子技术, 2022, 45(19): 1–8. doi: 10.16652/j.issn.1004-373x.2022.19.001.

    HU Zhiyong, LIU Huali, GONG Shujun, et al. Target intention recognition based on random forest[J]. Modern Electronics Technique, 2022, 45(19): 1–8. doi: 10.16652/j.issn.1004-373x.2022.19.001.
    [10] ZHANG Chenhao, ZHOU Yan, LI Hui, et al. Combat intention recognition of air targets based on 1DCNN-BiLSTM[J]. IEEE Access, 2023, 11: 134504–134516. doi: 10.1109/ACCESS.2023.3337640.
    [11] ZHANG Zhuo, WANG Hongfei, JIANG Wen, et al. A target intention recognition method based on information classification processing and information fusion[J]. Engineering Applications of Artificial Intelligence, 2024, 127: 107412. doi: 10.1016/j.engappai.2023.107412.
    [12] CHENG Cheng, LIU Xiaoyu, ZHOU Beitong, et al. Intelligent fault diagnosis with noisy labels via semisupervised learning on industrial time series[J]. IEEE Transactions on Industrial Informatics, 2023, 19(6): 7724–7732. doi: 10.1109/TII.2022.3229130.
    [13] ZHANG Hongyi, CISSÉ M, DAUPHIN Y N, et al. Mixup: Beyond empirical risk minimization[C]. The 6th International Conference on Learning Representations, Vancouver, Canada, 2018.
    [14] ARAZO E, ORTEGO D, ALBERT P, et al. Unsupervised label noise modeling and loss correction[C]. The 36th International Conference on Machine Learning, Long Beach, USA, 2019: 312–321.
    [15] HAN Bo, YAO Quanming, YU Xingrui, et al. Co-teaching: Robust training of deep neural networks with extremely noisy labels[C]. The 32nd International Conference on Neural Information Processing Systems, Montréal, Canada, 2018: 8536–8546.
    [16] HAN Bo, NIU Gang, YU Xingrui, et al. SIGUA: Forgetting may make learning with noisy labels more robust[C]. The 37th International Conference on Machine Learning, 2020: 4006–4016.
    [17] CASTELLANI A, SCHMITT S, and HAMMER B. Estimating the electrical power output of industrial devices with end-to-end time-series classification in the presence of label noise[C]. Proceedings of European Conference on Machine Learning and Knowledge Discovery in Databases. Bilbao, Spain, 2021: 469–484. doi: 10.1007/978-3-030-86486-6_29.
    [18] LI Shikun, XIA Xiaobo, GE Shiming, et al. Selective-supervised contrastive learning with noisy labels[C]. 2022 IEEE/CVF Conference on Computer Vision and Pattern Recognition, New Orleans, USA, 2022: 316–325. doi: 10.1109/CVPR52688.2022.00041.
    [19] MA Peitian, LIU Zhen, ZHENG Junhao, et al. CTW: Confident time-warping for time-series label-noise learning[C]. The 32nd International Joint Conference on Artificial Intelligence, Macao, China, 2023: 4046–4054. doi: 10.24963/ijcai.2023/450.
    [20] 魏琦, 孙皓亮, 马玉玲, 等. 面向标签噪声的联合训练框架[J]. 中国科学: 信息科学, 2024, 54(1): 144–158. doi: 10.1360/SSI-2022-0395.

    WEI Qi, SUN Haoliang, MA Yuling, et al. A joint training framework for learning with noisy labels[J]. SCIENTIA SINICA Informationis, 2024, 54(1): 144–158. doi: 10.1360/SSI-2022-0395.
    [21] LIANG Xuefeng, LIU Xingyu, and YAO Longshan. Review–a survey of learning from noisy labels[J]. ECS Sensors Plus, 2022, 1(2): 021401. doi: 10.1149/2754-2726/ac75f5.
    [22] SHAN Yuxiang, LU Hailiang, and LOU Weidong. A hybrid attention and dilated convolution framework for entity and relation extraction and mining[J]. Scientific Reports, 2023, 13(1): 17062. doi: 10.1038/s41598-023-40474-1.
    [23] CHEN Wei and SHI Ke. Multi-scale attention convolutional neural network for time series classification[J]. Neural Networks, 2021, 136: 126–140. doi: 10.1016/j.neunet.2021.01.001.
    [24] ZHANG Yitian, MA Liheng, PAL S, et al. Multi-resolution time-series transformer for long-term forecasting[C]. The 27th International Conference on Artificial Intelligence and Statistics, Valencia, Spain, 2024: 4222–4230.
    [25] BISCHOF B and BUNCH E. Geometric feature performance under downsampling for EEG classification tasks[J]. arXiv: 2102.07669, 2021. doi: 10.48550/arXiv.2102.07669.
    [26] LI Junnan, WONG Yongkang, ZHAO Qi, et al. Learning to learn from noisy labeled data[C]. The 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition, Long Beach, USA, 2019: 5046–5054. doi: 10.1109/CVPR.2019.00519.
    [27] XIA Xiaobo, LIU Tongliang, HAN Bo, et al. Sample selection with uncertainty of losses for learning with noisy labels[C]. The Tenth International Conference on Learning Representations, 2022.
    [28] GUI Xianjin, WANG Wei, and TIAN Zhanghao. Towards understanding deep learning from noisy labels with small-loss criterion[C]. The Thirtieth International Joint Conference on Artificial Intelligence, Montreal, Canada, 2021: 2469–2475.
    [29] 王晓莉, 薛丽. 标签噪声学习算法综述[J]. 计算机系统应用, 2021, 30(1): 10–18. doi: 10.15888/j.cnki.csa.007776.

    WANG Xiaoli and XUE Li. Review on label noise learning algorithms[J]. Computer Systems & Applications, 2021, 30(1): 10–18. doi: 10.15888/j.cnki.csa.007776.
    [30] 崔瑞博, 王峰. 动量更新与重构约束的限制视角下3D物品识别[J]. 华东师范大学学报(自然科学版), 2023(6): 61–72. doi: 10.3969/j.issn.1000-5641.2023.06.006.

    CUI Ruibo and WANG Feng. Momentum-updated representation with reconstruction constraint for limited-view 3D object recognition[J]. Journal of East China Normal University (Natural Science), 2023(6): 61–72. doi: 10.3969/j.issn.1000-5641.2023.06.006.
    [31] 邓琨, 李文平, 陈丽, 等. 一种新的基于标签传播的复杂网络重叠社区识别算法[J]. 控制与决策, 2020, 35(11): 2733–2742. doi: 10.13195/j.kzyjc.2019.0176.

    DENG Kun, LI Wenping, CHEN Li, et al. A novel algorithm for overlapping community detection based on label propagation in complex networks[J]. Control and Decision, 2020, 35(11): 2733–2742. doi: 10.13195/j.kzyjc.2019.0176.
    [32] XIE Jierui, SZYMANSKI B K, and LIU Xiaoming. SLPA: Uncovering overlapping communities in social networks via a speaker-listener interaction dynamic process[C]. The 2011 IEEE 11th International Conference on Data Mining Workshops, Vancouver, Canada, 2011: 344–349. doi: 10.1109/ICDMW.2011.154.
    [33] ZHANG Bowen, WANG Yidong, HOU Wenxin, et al. FlexMatch: Boosting semi-supervised learning with curriculum pseudo labeling[C]. The 35th International Conference on Neural Information Processing Systems, Red Hook, USA, 2024: 1407.
    [34] SONG Zihao, ZHOU Yan, CHENG Wei, et al. Robust air target intention recognition based on weight self-learning parallel time-channel transformer encoder[J]. IEEE Access, 2023, 11: 144760–144777. doi: 10.1109/ACCESS.2023.3341154.
    [35] WANG Jingdong, WANG Fei, ZHANG Changshui, et al. Linear neighborhood propagation and its applications[J]. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2009, 31(9): 1600–1615. doi: 10.1109/TPAMI.2008.216.
    [36] WANG Zhiguang, YAN Weizhong, and OATES T. Time series classification from scratch with deep neural networks: A strong baseline[C]. 2017 International Joint Conference on Neural Networks, Anchorage, USA, 2017: 1578–1585. doi: 10.1109/IJCNN.2017.7966039.
  • 加载中
图(9) / 表(10)
计量
  • 文章访问数:  112
  • HTML全文浏览量:  31
  • PDF下载量:  19
  • 被引次数: 0
出版历程
  • 收稿日期:  2024-12-05
  • 修回日期:  2025-03-19
  • 网络出版日期:  2025-03-28

目录

    /

    返回文章
    返回