MachineLearningStackEnsembleSettings Class

Definition

Advances setting to customize StackEnsemble run.

public class MachineLearningStackEnsembleSettings
type MachineLearningStackEnsembleSettings = class
Public Class MachineLearningStackEnsembleSettings
Inheritance
MachineLearningStackEnsembleSettings

Constructors

MachineLearningStackEnsembleSettings()

Initializes a new instance of MachineLearningStackEnsembleSettings.

Properties

StackMetaLearnerKWargs

Optional parameters to pass to the initializer of the meta-learner.

To assign an object to this property use FromObjectAsJson<T>(T, JsonSerializerOptions).

To assign an already formatted json string to this property use FromString(String).

Examples:

  • BinaryData.FromObjectAsJson("foo"): Creates a payload of "foo".
  • BinaryData.FromString("\"foo\""): Creates a payload of "foo".
  • BinaryData.FromObjectAsJson(new { key = "value" }): Creates a payload of { "key": "value" }.
  • BinaryData.FromString("{\"key\": \"value\"}"): Creates a payload of { "key": "value" }.
StackMetaLearnerTrainPercentage

Specifies the proportion of the training set (when choosing train and validation type of training) to be reserved for training the meta-learner. Default value is 0.2.

StackMetaLearnerType

The meta-learner is a model trained on the output of the individual heterogeneous models.

Applies to