|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Opdf | |
---|---|
be.ac.ulg.montefiore.run.jahmm | This package is an Hidden Markov Model implementation. |
be.ac.ulg.montefiore.run.jahmm.io | This package holds classes that read and write Hidden Markov Model-related objects. |
be.ac.ulg.montefiore.run.jahmm.learn | This package holds Hidden Markov Model-related learning algorithms. |
Uses of Opdf in be.ac.ulg.montefiore.run.jahmm |
---|
Classes in be.ac.ulg.montefiore.run.jahmm with type parameters of type Opdf | |
---|---|
interface |
OpdfFactory<D extends Opdf<?>>
Classes implementing this interface are able to generate observation probability distribution functions. |
Classes in be.ac.ulg.montefiore.run.jahmm that implement Opdf | |
---|---|
class |
OpdfDiscrete<E extends Enum<E>>
This class implements a distribution over a finite set of elements. |
class |
OpdfGaussian
This class represents a (monovariate) gaussian distribution function. |
class |
OpdfGaussianMixture
This class implements a mixture of monovariate gaussian distributions. |
class |
OpdfInteger
This class represents a distribution of a finite number of positive integer observations. |
class |
OpdfMultiGaussian
This class represents a multivariate gaussian distribution function. |
Methods in be.ac.ulg.montefiore.run.jahmm that return Opdf | |
---|---|
Opdf<O> |
Opdf.clone()
|
Opdf<O> |
Hmm.getOpdf(int stateNb)
Returns the opdf associated with a given state. |
Methods in be.ac.ulg.montefiore.run.jahmm with parameters of type Opdf | |
---|---|
void |
Hmm.setOpdf(int stateNb,
Opdf<O> opdf)
Sets the opdf associated with a given state. |
Constructor parameters in be.ac.ulg.montefiore.run.jahmm with type arguments of type Opdf | |
---|---|
Hmm(double[] pi,
double[][] a,
java.util.List<? extends Opdf<O>> opdfs)
Creates a new HMM. |
|
Hmm(int nbStates,
OpdfFactory<? extends Opdf<O>> opdfFactory)
Creates a new HMM. |
Uses of Opdf in be.ac.ulg.montefiore.run.jahmm.io |
---|
Classes in be.ac.ulg.montefiore.run.jahmm.io with type parameters of type Opdf | |
---|---|
class |
OpdfReader<O extends Opdf<?>>
Reads an observation distribution textual description. |
class |
OpdfWriter<O extends Opdf<?>>
Writes an observation distribution textual description. |
Methods in be.ac.ulg.montefiore.run.jahmm.io that return Opdf | |
---|---|
Opdf<?> |
OpdfGenericReader.read(java.io.StreamTokenizer st)
|
Method parameters in be.ac.ulg.montefiore.run.jahmm.io with type arguments of type Opdf | ||
---|---|---|
static
|
HmmReader.read(java.io.Reader reader,
OpdfReader<? extends Opdf<O>> opdfReader)
Reads a HMM from a text file. |
|
static
|
HmmWriter.write(java.io.Writer writer,
OpdfWriter<? extends Opdf<O>> opdfWriter,
Hmm<O> hmm)
Writes a HMM description. |
Uses of Opdf in be.ac.ulg.montefiore.run.jahmm.learn |
---|
Constructor parameters in be.ac.ulg.montefiore.run.jahmm.learn with type arguments of type Opdf | |
---|---|
KMeansLearner(int nbStates,
OpdfFactory<? extends Opdf<O>> opdfFactory,
java.util.List<? extends java.util.List<? extends O>> sequences)
Initializes a K-Means algorithm implementation. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |