9 references to TrainTest
Microsoft.ML.Data (1)
DataLoadSave\TransformerChain.cs (1)
25/// should be <see cref="Training"/> or <see cref="TrainTest"/>.
Microsoft.ML.Tests (7)
Scenarios\Api\CookbookSamples\CookbookSamplesDynamicApi.cs (2)
232.Append(mlContext.Transforms.Conversion.MapValueToKey("Label"), TransformerScope.TrainTest) 646.Append(mlContext.Transforms.Conversion.MapValueToKey("Label"), TransformerScope.TrainTest)
Scenarios\Api\Estimators\DecomposableTrainAndPredict.cs (1)
34.Append(new ValueToKeyMappingEstimator(ml, "Label"), TransformerScope.TrainTest)
Scenarios\Api\Estimators\Extensibility.cs (2)
42.Append(new CustomMappingEstimator<IrisData, IrisData>(ml, action, null), TransformerScope.TrainTest) 43.Append(new ValueToKeyMappingEstimator(ml, "Label"), TransformerScope.TrainTest)
Scenarios\Api\Estimators\PredictAndMetadata.cs (1)
32.Append(ml.Transforms.Conversion.MapValueToKey("Label"), TransformerScope.TrainTest)
Scenarios\IrisPlantClassificationWithStringLabelTests.cs (1)
38.Append(mlContext.Transforms.Conversion.MapValueToKey("Label", "IrisPlantType"), TransformerScope.TrainTest)
Microsoft.ML.TorchSharp.Tests (1)
TextClassificationTests.cs (1)
98var estimator = chain.Append(ML.Transforms.Conversion.MapValueToKey("Label", "Sentiment"), TransformerScope.TrainTest)