进化多目标特征选择

摘要: 基本知识 特征选择是一个多目标任务,分类精度最大化和特征选择数量最小化是特征选择的两个主要目标。 特征选择原因:当今世界大数据的激增,高维数据在许多实际应用中经常遇到。例如,在癌症分类中,癌症数据通常是高维的,并且包含大量不相关的、有噪声的或冗余的特征。 Feature selection (FS) 阅读全文
posted @ 2024-11-01 18:21 gjwqz 阅读(6) 评论(0) 推荐(0) 编辑

Java列表list

摘要: List列表 创建列表 //List 的ArrayList 实现 List<String> list1 = new ArrayList<>(); // List 的LinkedList 实现 List<String> list2 = new LinkedList<>(); 常用方法 import j 阅读全文
posted @ 2024-10-21 16:08 gjwqz 阅读(3) 评论(0) 推荐(0) 编辑

力扣刷题笔记

摘要: 有序数组的平方: 我的错误解法: public class Test { public static void main(String[] args) { Solution s = new Solution(); int[] nums = {-5,-3,-2,-1}; System.out.prin 阅读全文
posted @ 2024-09-22 15:11 gjwqz 阅读(2) 评论(0) 推荐(0) 编辑