文件名称:gmm:高斯混合模型(GMM)的实现
文件大小:8KB
文件格式:ZIP
更新时间:2024-07-03 20:09:47
Python
通用汽车 我对高斯混合模型(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
【文件预览】:
gmm-master
----MANIFEST.in(42B)
----LICENSE.txt(1KB)
----examples()
--------faithful.txt(5KB)
--------faithful.py(1KB)
----setup.py(667B)
----README.md(1KB)
----gmm()
--------__init__.py(0B)
--------test()
--------algorithm.py(6KB)
----CHANGES.txt(38B)
----.gitignore(57B)