摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- from numpy import * """ Code for hierarchical clustering, modified from Programming Collective Intelligence by Toby Segaran (O'Reilly Media 2007, page... 阅读全文
posted @ 2017-09-03 21:19 WangLC 阅读(824) 评论(0) 推荐(0)
摘要: import numpy as np# Function: K Means# # K-Means is an algorithm that takes in a dataset and a constant# k and returns k centroids (which define clust 阅读全文
posted @ 2017-09-03 18:49 WangLC 阅读(305) 评论(0) 推荐(0)
摘要: CCF推荐 类别编号|类别 1: 计算机体系结构/并行与分布计算/存储系统(8)2: 计算机网络(6) 3: 网络与信息安全 (7) 4: 软件工程/系统软件/程序设计语言(9) 5: 数据库/数据挖掘/内容检索(6)6: 计算机科学理论(5)7: 计算机图形学与多媒体(6)8: 人工智能(9)9: 阅读全文
posted @ 2017-09-03 13:35 WangLC 阅读(724) 评论(0) 推荐(0)
摘要: information gain 在信息增益中,衡量标准是看特征能够为分类系统带来多少信息,带来的信息越多,该特征越重要。对一个特征而言,系统有它和没它时信息量将发生变化,而前后信息量的差值就是这个特征给系统带来的信息量。所谓信息量,就是熵。 在概率论和信息论中,两个随机变量的互信息(Mutual 阅读全文
posted @ 2017-09-03 13:24 WangLC 阅读(635) 评论(0) 推荐(0)