Freigeben über


AutoCatalog.CreateRecommendationExperiment Methode

Definition

Überlädt

CreateRecommendationExperiment(UInt32)

Erstellt ein neues AutoML-Experiment, das auf einem Empfehlungsklassifizierungs-Dataset ausgeführt werden soll.

CreateRecommendationExperiment(RecommendationExperimentSettings)

Erstellt ein neues AutoML-Experiment, das auf einem Empfehlungsdatensatz ausgeführt werden soll.

CreateRecommendationExperiment(UInt32)

Erstellt ein neues AutoML-Experiment, das auf einem Empfehlungsklassifizierungs-Dataset ausgeführt werden soll.

public Microsoft.ML.AutoML.RecommendationExperiment CreateRecommendationExperiment (uint maxExperimentTimeInSeconds);
member this.CreateRecommendationExperiment : uint32 -> Microsoft.ML.AutoML.RecommendationExperiment
Public Function CreateRecommendationExperiment (maxExperimentTimeInSeconds As UInteger) As RecommendationExperiment

Parameter

maxExperimentTimeInSeconds
UInt32

Maximale Anzahl von Sekunden, die das Experiment ausgeführt wird.

Gibt zurück

Ein neues AutoML-Empfehlungsklassifizierungsexperiment.

Hinweise

Ein ausführlicheres Codebeispiel für ein Mehrklassenklassifizierungsexperiment für AutoML finden Sie RecommendationExperiment unter .

Ein Experiment kann länger als maxExperimentTimeInSecondsausgeführt werden. Dies liegt daran, dass AutoML nach dem Starten der Schulung eines ML.NET Modells die Ausführung des Modells ermöglicht. Wenn beispielsweise das erste Modell AutoML 4 Stunden dauert und das zweite Modell 5 Stunden dauert, aber maxExperimentTimeInSeconds die Anzahl der Sekunden in 6 Stunden war, wird das Experiment für 4 + 5 = 9 Stunden (nicht 6 Stunden) ausgeführt.

Gilt für:

CreateRecommendationExperiment(RecommendationExperimentSettings)

Erstellt ein neues AutoML-Experiment, das auf einem Empfehlungsdatensatz ausgeführt werden soll.

public Microsoft.ML.AutoML.RecommendationExperiment CreateRecommendationExperiment (Microsoft.ML.AutoML.RecommendationExperimentSettings experimentSettings);
member this.CreateRecommendationExperiment : Microsoft.ML.AutoML.RecommendationExperimentSettings -> Microsoft.ML.AutoML.RecommendationExperiment
Public Function CreateRecommendationExperiment (experimentSettings As RecommendationExperimentSettings) As RecommendationExperiment

Parameter

experimentSettings
RecommendationExperimentSettings

Einstellungen für das AutoML-Experiment.

Gibt zurück

Ein neues AutoML-Empfehlungsexperiment.

Hinweise

Weitere Informationen finden Sie RecommendationExperiment im Codebeispiel eines AutoML-Empfehlungsexperiments.

Gilt für: