5 references to Schema
Microsoft.ML.AutoML (3)
SweepableEstimator\Converter\MultiModelPipelineConverter.cs (1)
27jsonObject["schema"] = value.Schema.ToString();
SweepableEstimator\MultiModelPipeline.cs (2)
40internal string[] PipelineIds { get => Schema.ToTerms().Select(t => t.ToString()).ToArray(); } 108var sweepableEntity = CreateSweepableEntityFromEntity(pipeline.Schema, pipeline.Estimators);
Microsoft.ML.AutoML.Tests (2)
SweepableEstimatorPipelineTest.cs (2)
67pipeline.Schema.ToString().Should().Be("(e0 + e1) * (e2 + e3 + Nil)"); 89pipeline1.Schema.ToString().Should().Be("(e0 + e1 * e2) * (e3 * (e4 + e5) + e6)");