1 implementation of ICrossValidateDatasetManager
Microsoft.ML.AutoML (1)
AutoMLExperiment\IDatasetManager.cs (1)
108
internal class CrossValidateDatasetManager : IDatasetManager,
ICrossValidateDatasetManager
7 references to ICrossValidateDatasetManager
Microsoft.ML.AutoML (7)
API\BinaryClassificationExperiment.cs (2)
390
if (_datasetManager is
ICrossValidateDatasetManager
datasetManager)
445
throw new ArgumentException($"The runner metric manager is of type {_metricManager.GetType()} which expected to be of type {typeof(ITrainValidateDatasetManager)} or {typeof(
ICrossValidateDatasetManager
)}");
API\MulticlassClassificationExperiment.cs (2)
368
if (_datasetManager is
ICrossValidateDatasetManager
datasetManager)
423
throw new ArgumentException($"The runner metric manager is of type {_metricManager.GetType()} which expected to be of type {typeof(ITrainValidateDatasetManager)} or {typeof(
ICrossValidateDatasetManager
)}");
API\RegressionExperiment.cs (2)
395
if (_datasetManager is
ICrossValidateDatasetManager
datasetManager)
450
throw new ArgumentException($"The runner metric manager is of type {_metricManager.GetType()} which expected to be of type {typeof(ITrainValidateDatasetManager)} or {typeof(
ICrossValidateDatasetManager
)}");
AutoMLExperiment\Runner\SweepablePipelineRunner.cs (1)
41
if (_datasetManager is
ICrossValidateDatasetManager
crossValidateDatasetManager)