다음을 통해 공유


AutoCatalog.CreateBinaryClassificationExperiment 메서드

정의

오버로드

CreateBinaryClassificationExperiment(BinaryExperimentSettings)

이진 분류 데이터 세트에서 실행할 새 AutoML 실험을 만듭니다.

CreateBinaryClassificationExperiment(UInt32)

이진 분류 데이터 세트에서 실행할 새 AutoML 실험을 만듭니다.

CreateBinaryClassificationExperiment(BinaryExperimentSettings)

이진 분류 데이터 세트에서 실행할 새 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)

이진 분류 데이터 세트에서 실행할 새 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시간이 걸리고 학습된 두 번째 모델은 5시간이 걸리지만 maxExperimentTimeInSeconds 6시간의 초 수인 경우 실험은 4+ 5 = 9시간(6시간 아님)동안 실행됩니다.

적용 대상