We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb7b724 commit ceb9a2bCopy full SHA for ceb9a2b
src/Microsoft.ML.AutoML/SweepableEstimator/SweepablePipeline.cs
@@ -153,7 +153,7 @@ public string ToString(Parameter parameter)
153
if (parameter.TryGetValue(AutoMLExperiment.PipelineSearchspaceName, out var pipelineParameter))
154
{
155
var schema = pipelineParameter["_SCHEMA_"].AsType<string>();
156
- var estimatorStrings = Entity.FromExpression(_currentSchema)
+ var estimatorStrings = Entity.FromExpression(schema)
157
.ValueEntities()
158
.Where(e => e is StringEntity se && se.Value != "Nil")
159
.Select((se) =>
0 commit comments