代码搜索:MIXTURE
找到约 1,805 项符合「MIXTURE」的源代码
代码结果 1,805
www.eeworm.com/read/164583/10100650
py mixture.py
#!/usr/bin/env python2.3
#
# ghmm example: mixture.py
#
#
#
#
from ghmm import *
import numarray
import math
import getopt, sys, string
def Entropy(prob_dist):
""" Returns Entropy for the discre
www.eeworm.com/read/421143/10753580
py mixture.py
# Create mixture of Gaussians
from numpy import *
from scipy.stats.distributions import *
import pylab as PL
class Mix:
def __init__(self,w,mu,sigma):
self.mu=mu # mixture means
self._dim=siz
www.eeworm.com/read/453188/7424915
m mixture.m
function prob = mixture(mix, x)
%计算输出概率
%输入:
% mix -- 混合高斯结构
% x -- 输入向量, SIZE*1
%输出:
% prob -- 输出概率
prob = 0;
for j = 1:mix.M
m = mix.mean(j,:);
v = mix.var (j,:);
w = mix.weig
www.eeworm.com/read/438332/7732727
m mixture.m
function prob = mixture(mix, x)
%计算输出概率
%输入:
% mix -- 混合高斯结构
% x -- 输入向量, SIZE*1
%输出:
% prob -- 输出概率
prob = 0;
for j = 1:mix.M
m = mix.mean(j,:);
v = mix.var (j,:);
w = mix.weig
www.eeworm.com/read/333698/12664449
m mixture.m
function prob = mixture(mix, x)
% calculate output probability
%
% inputs:
% mix -- gaussian mixture
% x -- input vector, SIZE*1
% output:
% prob -- output probability
% Copyrigh
www.eeworm.com/read/329960/12923728
py mixture.py
################################################################################
#
# This file is part of the General Hidden Markov Model Library,
# GHMM version 0.8_beta1, see http://ghmm
www.eeworm.com/read/139297/13164032
java mixture.java
import java.awt.*;
abstract class Mixture {
final int maxkp = 20;
final int typegauss = 0;
final int typeuniform = 1;
final int typecurvedgauss = 2;
final int typescaleshift = 3;
final in
www.eeworm.com/read/483253/6602433
m mixture.m
function prob = mixture(mix, x)
%计算输出概率
%输入:
% mix -- 混合高斯结构
% x -- 输入向量, SIZE*1
%输出:
% prob -- 输出概率
prob = 0;
for j = 1:mix.M
m = mix.mean(j,:);
v = mix.var (j,:);
w = mix.weig
www.eeworm.com/read/263146/11374121
ocf mixture.ocf
www.eeworm.com/read/263146/11374211