上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 69 下一页
摘要: python数据预处理之缺失值简单处理:https://blog.csdn.net/Amy_mm/article/details/79799629 该博客总结比较详细,感谢博主。 我们在进行模型训练时,不可避免的会遇到某些特征出现空值的情况,下面整理了几种填充空值的方法 1. 用固定值填充 对于特征 阅读全文
posted @ 2018-08-16 16:43 静悟生慧 阅读(17166) 评论(0) 推荐(0) 编辑
摘要: Scikit-Learn also has a general class, MultiOutputRegressor, which can be used to use a single-output regression model and fit one regressor separatel 阅读全文
posted @ 2018-08-16 10:34 静悟生慧 阅读(7925) 评论(0) 推荐(0) 编辑
摘要: df=DataFrame([{‘A’:’11’,’B’:’12’},{‘A’:’111’,’B’:’121’},{‘A’:’1111’,’B’:’1211’}]) 来自:https://blog.csdn.net/u012189747/article/details/78203364?locatio 阅读全文
posted @ 2018-08-15 22:09 静悟生慧 阅读(61485) 评论(0) 推荐(1) 编辑
摘要: https://blog.csdn.net/u012884015/article/details/78653178 阅读全文
posted @ 2018-08-14 20:48 静悟生慧 阅读(13770) 评论(0) 推荐(0) 编辑
摘要: df = pd.read_csv('....') 要调用循环处理多个文件时,内存占用情况严重,如果互相之间不需要调用,可以直接del df 释放内存 阅读全文
posted @ 2018-08-14 11:33 静悟生慧 阅读(3324) 评论(0) 推荐(1) 编辑
摘要: SSE(和方差、误差平方和):The sum of squares due to error MSE(均方差、方差):Mean squared errorRMSE(均方根、标准差):Root mean squared errorR-square(确定系数):Coefficient of determ 阅读全文
posted @ 2018-08-13 11:51 静悟生慧 阅读(5851) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u010900574/article/details/52666291 博主总结和很好,方法很实用。 python一些依赖库: https://www.lfd.uci.edu/~gohlke/pythonlibs/ lightgbm的原理及使用简介:包含建 阅读全文
posted @ 2018-08-12 22:16 静悟生慧 阅读(1027) 评论(0) 推荐(0) 编辑
摘要: In [2]: df Out[2]: A B 0 1.068932 -0.794307 2 -0.470056 1.192211 4 -0.284561 0.756029 6 1.037563 -0.267820 8 -0.538478 -0.800654 In [5]: df.iloc[[2]] 阅读全文
posted @ 2018-08-12 20:09 静悟生慧 阅读(452) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/51091132/pandas-and-scikit-learn-keyerror-not-in-index The problem is the way you are trying to index the X using  阅读全文
posted @ 2018-08-10 11:23 静悟生慧 阅读(11395) 评论(0) 推荐(0) 编辑
摘要: Xgboost调参: https://wuhuhu800.github.io/2018/02/28/XGboost_param_share/ https://blog.csdn.net/hx2017/article/details/78064362 pandas DataFrame中的空值处理: h 阅读全文
posted @ 2018-08-10 10:43 静悟生慧 阅读(483) 评论(0) 推荐(0) 编辑
上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 69 下一页