随机森林 {Keras 由浅入深}

随机森林

|
![tensorflow ](https://img-blog.csdnimg.cn/20190825125400589.png##pic_center =40x)TensorFlow|
![keras](https://img-blog.csdnimg.cn/20190804140154168.png##pic_center =40x)Keras |

python & mathematics


随机森林是集成学习中的一种方法。
随机森林采用的方法为bagging(样本不放回)

![](https://imgconvert.csdnimg.cn/aHR0cHM6Ly9pbWFnZXMyMDE4LmNuYmxvZ3MuY29tL2Jsb2cvMTE4MDEyMC8yMDE4MDcvMTE4MDEyMC0yMDE4MDcxMzEyMzg0NDY3OS0zNDY1OTI5MjUucG5n?x-oss-process=image/format,png#==#pic_center =400x)

from sklearn.ensemble import RandomForestClassifier

可参考链接:
https://www.cnblogs.com/zongfa/p/9304353.html

相关推荐