예제 #1
0
파일: test.py 프로젝트: yiboyang/PyVB
def test_EMGMM(N=5,**keywards):
    from pyvb.emgmm import EMGMM
    X = testData(10000)
    model = EMGMM(N)
    model.fit(X)
    model.showModel()
    print(model.score(X))
예제 #2
0
파일: test.py 프로젝트: oieun/PyVB
def test_DPGMM(N=5, **keywards):
    from pyvb.dpgmm import DPGMM

    X = testData(10000)
    model = DPGMM(N)
    model.fit(X)
    model.plot2d(X)
예제 #3
0
파일: test.py 프로젝트: oieun/PyVB
def test_VBGMM(N=5, **keywards):
    from pyvb.vbgmm import VBGMM

    X = testData(10000)
    model = VBGMM(N)
    model.fit(X)
    model.plot2d(X)
예제 #4
0
파일: test.py 프로젝트: quliuwuyihmy/PyVB
def test_EMGMM(N=5, **keywards):
    from pyvb.emgmm import EMGMM
    X = testData(10000)
    model = EMGMM(N)
    model.fit(X)
    model.showModel()
    print model.score(X)
예제 #5
0
파일: test.py 프로젝트: quliuwuyihmy/PyVB
def test_DPGMM(N=5, **keywards):
    from pyvb.dpgmm import DPGMM
    X = testData(10000)
    model = DPGMM(N)
    model.fit(X)
    model.plot2d(X)
예제 #6
0
파일: test.py 프로젝트: quliuwuyihmy/PyVB
def test_VBGMM(N=5, **keywards):
    from pyvb.vbgmm import VBGMM
    X = testData(10000)
    model = VBGMM(N)
    model.fit(X)
    model.plot2d(X)