AutoCatalog.CreateBinaryClassificationExperiment メソッド

定義

オーバーロード

CreateBinaryClassificationExperiment(BinaryExperimentSettings)

バイナリ分類データセットで実行する新しい AutoML 実験を作成します。

CreateBinaryClassificationExperiment(UInt32)

バイナリ分類データセットで実行する新しい AutoML 実験を作成します。

CreateBinaryClassificationExperiment(BinaryExperimentSettings)

ソース:
AutoCatalog.cs
ソース:
AutoCatalog.cs
ソース:
AutoCatalog.cs

バイナリ分類データセットで実行する新しい AutoML 実験を作成します。

public Microsoft.ML.AutoML.BinaryClassificationExperiment CreateBinaryClassificationExperiment(Microsoft.ML.AutoML.BinaryExperimentSettings experimentSettings);
member this.CreateBinaryClassificationExperiment : Microsoft.ML.AutoML.BinaryExperimentSettings -> Microsoft.ML.AutoML.BinaryClassificationExperiment
Public Function CreateBinaryClassificationExperiment (experimentSettings As BinaryExperimentSettings) As BinaryClassificationExperiment

パラメーター

experimentSettings
BinaryExperimentSettings

AutoML 実験の設定。

戻り値

新しい AutoML 二項分類実験。

注釈

AutoML 二項分類実験のより詳細なコード例を参照してください BinaryClassificationExperiment

適用対象

CreateBinaryClassificationExperiment(UInt32)

ソース:
AutoCatalog.cs
ソース:
AutoCatalog.cs
ソース:
AutoCatalog.cs

バイナリ分類データセットで実行する新しい AutoML 実験を作成します。

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

パラメーター

maxExperimentTimeInSeconds
UInt32

実験が実行される最大秒数。

戻り値

新しい AutoML 二項分類実験。

注釈

AutoML 二項分類実験のより詳細なコード例を参照してください BinaryClassificationExperiment

実験が実行時間が長くなる maxExperimentTimeInSeconds場合があります。 これは、AutoML が ML.NET モデルのトレーニングを開始すると、AutoML によってモデルのトレーニングが完了するためです。 たとえば、最初のモデルの AutoML 列車に 4 時間かかり、トレーニングされた 2 番目のモデルが 5 時間かかるが maxExperimentTimeInSeconds 、6 時間の秒数であった場合、実験は 4 + 5 = 9 時間 (6 時間ではなく) 実行されます。

適用対象