|
MarkovDiscreteFunction Constructor (Int32, Int32, IRandomNumberGeneratorDouble)
|
Constructs a new potential function modeling Hidden Markov Models.
Namespace:
Accord.Statistics.Models.Fields.Functions
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxpublic MarkovDiscreteFunction(
int states,
int symbols,
IRandomNumberGenerator<double> initialization = null
)
Public Sub New (
states As Integer,
symbols As Integer,
Optional initialization As IRandomNumberGenerator(Of Double) = Nothing
)
Request Example
View SourceParameters
- states
- Type: SystemInt32
The number of states. - symbols
- Type: SystemInt32
The number of symbols. - initialization (Optional)
- Type: Accord.Math.RandomIRandomNumberGeneratorDouble
The random number generator to use when initializing weights.
See Also