• 分类预测 | Matlab实现GA-RF遗传算法优化随机森林多输入分类预测


    分类预测 | Matlab实现GA-RF遗传算法优化随机森林多输入分类预测

    效果一览

    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    在这里插入图片描述

    基本介绍

    Matlab实现GA-RF遗传算法优化随机森林多输入分类预测(完整源码和数据)
    Matlab实现GA-RF遗传算法优化随机森林分类预测,多输入单输出模型。GA-RF分类预测模型
    多特征输入单输出的二分类及多分类模型。程序内注释详细,直接替换数据就可以用。程序语言为matlab,程序可出分类效果图,混淆矩阵图。优化随机森林树木棵树何深度。

    程序设计

    %-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    %%  清空环境变量
    clc;
    clear;
    warning off
    close all
    %-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    %%  添加路径
    addpath("Toolbox\")
    %-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    %%  读取数据
    res = xlsread('数据集.xlsx');
    %%  性能评价
    error1 = sum((T_sim1' == T_train)) / M * 100 ;
    error2 = sum((T_sim2' == T_test )) / N * 100 ;
    %-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    %%  绘图
    figure
    plot(1: M, T_train, 'r-*', 1: M, T_sim1, 'b-o', 'LineWidth', 1)
    legend('真实值', '预测值')
    xlabel('预测样本')
    ylabel('预测结果')
    string = {'训练集预测结果对比'; ['准确率=' num2str(error1) '%']};
    title(string)
    grid
    
    figure
    plot(1: N, T_test, 'r-*', 1: N, T_sim2, 'b-o', 'LineWidth', 1)
    legend('真实值', '预测值')
    xlabel('预测样本')
    ylabel('预测结果')
    string = {'测试集预测结果对比'; ['准确率=' num2str(error2) '%']};
    title(string)
    grid
    %-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    %%  混淆矩阵
    if flag_conusion == 1
    
        figure
        cm = confusionchart(T_train, T_sim1);
        cm.Title = 'Confusion Matrix for Train Data';
        cm.ColumnSummary = 'column-normalized';
        cm.RowSummary = 'row-normalized';
        
        figure
        cm = confusionchart(T_test, T_sim2);
        cm.Title = 'Confusion Matrix for Test Data';
        cm.ColumnSummary = 'column-normalized';
        cm.RowSummary = 'row-normalized';
    end
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50

    参考资料

    [1] https://download.csdn.net/download/kjm13182345320/87899283?spm=1001.2014.3001.5503
    [2] https://download.csdn.net/download/kjm13182345320/87899230?spm=1001.2014.3001.5503

  • 相关阅读:
    Python面经
    鸿蒙手表开发之使用adb命令安装线上包
    太牛了,阿里这份Spring Cloud开发手册几乎涵盖了微服务的所有操作
    SortTable.js + vxe-table 实现多条批量排序
    幸福里基于 Flink & Paimon 的流式数仓实践
    ESP8266-Arduino编程实例-VCNL4010光传感器驱动
    在京东如何做好前端系统的可观测性
    LeetCode_各种排序算法和查找算法
    基于java“多面体”艺术培训机构管理计算机毕业设计源码+系统+lw文档+mysql数据库+调试部署
    qt模块依赖
  • 原文地址:https://blog.csdn.net/kjm13182345320/article/details/133051900