机器学习
西域狂猪
这个人不懒,但是什么都没有~
展开
-
【Machine Learning】 Understanding K-means Clustering Algorithm
K-means is one of the most popular clustering algorithms, which is a unsupervised learning algorithm whose data is unlabel data. It is an iterative algorithm that tries to partition the dataset to K group.原创 2020-04-15 00:04:14 · 294 阅读 · 0 评论 -
【机器学习】用 tensorflow 实现随机森林 RandomForest in tensorflow (mnist 示例)
随机森林 随机森林的基本知识,许多博客都已经讲的很清晰。 但是用 tensorflow 实现的代码却很少。 博主属于机器学习未入门级别,纯属分享一段可以运行的随机森林代码。若有错误,麻烦指出。 本代码实现用 mnist 示例,通过 tensorflow 实现随机森林。 import tensorflow as tf import pandas as pd import numpy as np fr...原创 2019-04-20 07:46:08 · 7074 阅读 · 0 评论