摘要:
给你一个只包含正整数的非空数组 nums 。请你判断是否可以将这个数组分割成两个子集,使得两个子集的元素和相等 ###1. 回溯法(超时) class Solution { public: bool canPartition(vector<int>& nums) { //其实就是找一个集合值为特定值 阅读全文
摘要:
给你一个整数数组 nums ,你需要找出一个 连续子数组 ,如果对这个子数组进行升序排序,那么整个数组都会变为升序排序。 请你找出符合题意的最短 子数组,并输出它的长度 ###1. 排序后比较 先排序,再分别找第一个不在位的的元素,做差 class Solution { public: int fi 阅读全文
摘要:
###一. 特征选择 #####1. Permutation Importance # shuffle a single column of the validation data and get the loss(which reflects the importance) import eli5 阅读全文
摘要:
###一. 特征评价 #####1. 互信息 from sklearn.feature_selection import mutual_info_regression import matplotlib.pyplot as plt def make_mi_scores(X, y): X = X.co 阅读全文
摘要:
###一. 数据探索分析&数据清洗&缺失值填充 1 Which features are categorical? 什么特征是离散的? 2 Which features are numerical? 什么特征是连续的? 3 Which features are mixed data types? 什 阅读全文