Skip to content

Commit fbc00db

Browse files
jwood803justinormont
authored andcommitted
Fix quotes on json (#516)
1 parent f7a5526 commit fbc00db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.ML.PipelineInference/PipelinePattern.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ public PipelineResultRow ToResultRow()
273273
{
274274
var graphDef = ToEntryPointGraph();
275275

276-
return new PipelineResultRow($"{{'Nodes' : [{graphDef.Graph.ToJsonString()}]}}",
276+
return new PipelineResultRow($"{{\"Nodes\" : [{graphDef.Graph.ToJsonString()}]}}",
277277
PerformanceSummary?.MetricValue ?? -1d, UniqueId.ToString("N"),
278278
PerformanceSummary?.TrainingMetricValue ?? -1d,
279279
graphDef.GetSubgraphFirstNodeDataVarName(_env),

0 commit comments

Comments
 (0)