1 write to Metrics
Microsoft.ML.Core (1)
Data\ProgressReporter.cs (1)
561Metrics = new Double?[header.MetricNames.Count];
9 references to Metrics
Microsoft.ML.Core (9)
Data\ProgressReporter.cs (7)
80for (int iDst = 0; iDst < entry.Metrics.Length && iSrc < n;) 81entry.Metrics[iDst++] = values[iSrc++]; 181metrics.AddRange(rootEntry.Metrics); 190metrics.AddRange(entry.Metrics); 196metrics.CopyTo(jointEntry.Metrics); 547Contracts.Check(0 <= index && index < Metrics.Length); 548Metrics[index] = value;
Environment\ConsoleEnvironment.cs (2)
288if (ev.ProgressEntry.Metrics[i] == null) 291writer.Write("\t{0}: {1}", ev.ProgressEntry.Header.MetricNames[i], ev.ProgressEntry.Metrics[i].Value);