import itertools import numpy as np import matplotlib.pyplot as plt from sklearn.cluster import KMeans np.random.seed(1) # Set the number of samples, the means and # variances of each of the three simulated clusters samples = 100 mu = [(7, 5), (8, 12), (1, 10)] cov = [ [[0.5, 0], [0, 1.0]], [[2.0, 0], [0, 3.5]], [[3, 0], [0, 5]], ] # Generate a list of the 2D cluster points norm_dists = [ np.random.multivariate_normal(m, c, samples) for m, c in zip(mu, cov) ] X = np.array(list(itertools.chain(*norm_dists))) # Apply the K-Means Algorithm for k=3, which is # equal to the number of true Gaussian clusters km3 = KMeans(n_clusters=3) km3.fit(X) km3_labels = km3.labels_ # Apply the K-Means Algorithm for k=4, which is # larger than the number of true Gaussian clusters km4 = KMeans(n_clusters=4) km4.fit(X) km4_labels = km4.labels_ # Create a subplot comparing k=3 and k=4 # for the K-Means Algorithm fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(14,6)) ax1.scatter(X[:, 0], X[:, 1], c=km3_labels.astype(np.float)) ax1.set_xlabel("$x_1$") ax1.set_ylabel("$x_2$") ax1.set_title("K-Means with $k=3$") ax2.scatter(X[:, 0], X[:, 1], c=km4_labels.astype(np.float)) ax2.set_xlabel("$x_1$") ax2.set_ylabel("$x_2$") ax2.set_title("K-Means with $k=4$") plt.show()
http://www.waitingfy.com/archives/5030
Post Views: 0
5030
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 如何用二元分类器解决一个多分类任务?
- Tips | 如何用二元分类器解决一个多分类任务?
- sklearn kMeans 分类实战,对沪深300的每日涨跌进行分类
- 多分类实现方式介绍和在 Spark 上实现多分类逻辑回归
- 上海居民快被垃圾分类逼疯!这个深度学习技术帮你做到垃圾自动分类
- 11 - 分类与归档
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
程序设计语言理论基础
米切尔 / 电子工业出版社 / 2006-11 / 68.00元
本书提出了一个框架,用于分析程序设计语言的语法、操作和语义性质,该框架基于称为类型化λ演算的数学系统。λ演算的主要特色是对于函数和其他可计算的值的一种记法,以及一个等式逻辑和用于表达式求值的一组规则。本书中最简单的系统是称为泛代数的一个等式系统,它可以用来公理化和分析通常用于程序设计的许多数据类型。可作为理论计算机科学、软件系统和数学专业的大学本科高年级或者研究生初始学习阶段的教材,同时也适合用于......一起来看看 《程序设计语言理论基础》 这本书的介绍吧!