Table of Contents

Class StateParameters

Namespace
Bonsai.ML.HiddenMarkovModels
Assembly
Bonsai.ML.HiddenMarkovModels.dll

Represents the state parameters of a Hidden Markov Model (HMM).

[Combinator]
[JsonConverter(typeof(StateParametersJsonConverter))]
[WorkflowElementCategory(ElementCategory.Source)]
public class StateParameters : PythonStringBuilder
Inheritance
StateParameters
Inherited Members

Properties

InitialStateDistribution

The initial state distribution.

Observations

The observations.

Transitions

The transitions model.

Methods

BuildString()

Method used to build a string representation of the object.

Process()

Returns an observable sequence of StateParameters objects.

Process(IObservable<PyObject>)

Transforms an observable sequence of Python.Runtime.PyObject into an observable sequence of StateParameters objects by accessing internal attributes of the Python.Runtime.PyObject.

Process<TSource>(IObservable<TSource>)

Takes an observable seqence and returns an observable sequence of StateParameters objects that are emitted every time the input sequence emits a new element.