Click or drag to resize
Accord.NET (logo)

IHiddenConditionalRandomFieldLearningT Interface

Note: This API is now obsolete.

Common interface for Hidden Conditional Random Fields learning algorithms.

Namespace:  Accord.Statistics.Models.Fields.Learning
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
[ObsoleteAttribute("Please use ISupervisedLearning<HiddenConditionalRandomField<T>, T[], int> instead.")]
public interface IHiddenConditionalRandomFieldLearning<T>
Request Example View Source

Type Parameters

T

The IHiddenConditionalRandomFieldLearningT type exposes the following members.

Methods
  NameDescription
Public methodRun(T, Int32)
Runs one iteration of the learning algorithm with the specified input training observation and corresponding output label.
Public methodRun(T, Int32)
Runs the learning algorithm with the specified input training observation and corresponding output label until convergence.
Public methodRunEpoch
Runs one iteration of learning algorithm with the specified input training observations and corresponding output labels.
Top
Examples

For an example on how to learn Hidden Conditional Random Fields, please see the Hidden Resilient Gradient Learning page. All learning algorithms can be utilized in a similar manner.

See Also