Skip to content

Commit

Permalink
fix tostring bug for sweeepable pipeline (#6610)
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleLittleCloud authored Mar 28, 2023
1 parent cb7b724 commit ceb9a2b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public string ToString(Parameter parameter)
if (parameter.TryGetValue(AutoMLExperiment.PipelineSearchspaceName, out var pipelineParameter))
{
var schema = pipelineParameter["_SCHEMA_"].AsType<string>();
var estimatorStrings = Entity.FromExpression(_currentSchema)
var estimatorStrings = Entity.FromExpression(schema)
.ValueEntities()
.Where(e => e is StringEntity se && se.Value != "Nil")
.Select((se) =>
Expand Down

0 comments on commit ceb9a2b

Please sign in to comment.