|
HiddenMarkovModelLoadTDistribution Method (Stream)
|
Note: This API is now obsolete.
Loads a hidden Markov model from a stream.
Namespace:
Accord.Statistics.Models.Markov
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax [ObsoleteAttribute("Please use the Accord.Serializer class instead.")]
public static HiddenMarkovModel<TDistribution> Load<TDistribution>(
Stream stream
)
where TDistribution : IDistribution
<ObsoleteAttribute("Please use the Accord.Serializer class instead.")>
Public Shared Function Load(Of TDistribution As IDistribution) (
stream As Stream
) As HiddenMarkovModel(Of TDistribution)
Request Example
View SourceParameters
- stream
- Type: System.IOStream
The stream from which the model is to be deserialized.
Type Parameters
- TDistribution
Return Value
Type:
HiddenMarkovModelTDistributionThe deserialized model.
See Also