2016年8月2日

【数据库】python访问mysql

摘要: import MySQLdb 所有的数据库遵循相同的python database API 需要建立connection对象连接数据库,之后建立cursor对象处理数据。 conn = MySQLdb.Connect(host=, port=, user=, passwd=, db=, charse 阅读全文

posted @ 2016-08-02 21:02 yesuuu 阅读(124) 评论(0) 推荐(0) 编辑

【机器学习】Boosting和Bagging的差别

摘要: boosting和bagging的差别: bagging中的模型是强模型,偏差低,方差高。目标是降低方差。在bagging中,每个模型的bias和variance近似相同,但是互相相关性不太高,因此一般不能降低Bias,而一定程度上能降低variance。典型的bagging是random fore 阅读全文

posted @ 2016-08-02 14:14 yesuuu 阅读(940) 评论(0) 推荐(0) 编辑

导航