-
GMM: Gaussian Mixture Model 的实现
资源介绍
通用汽车
我对高斯混合模型(GMM)的实现。
欢迎拉取请求、评论和建议!
安装
我假设您很聪明,并且您正在使用 virtualenv 和 virtualenvwrapper。 如果没有,请立即。
为了安装软件包,请在终端中运行:
$ python setup.py sdist
然后:
$ pip install dist/GMM-0.1.0.tar.gz
你完成了!
基本用法
典型用法如下所示:
from pprint import pprint
import numpy as np
from gmm . algorithm import GMM
# Read in dataset from file
with open ( 'faithful.txt' , 'rt' ) as f :
data = []
for row in f :
col
- 上一篇: faithful-mods.github.io:网站已移动https
- 下一篇: MNIST数据集