26 references to Trace
Microsoft.ML.Data (6)
DataLoadSave\Binary\BinaryLoader.cs (1)
1186ch.Trace("Implicit shuffle will have pool size {0}", poolRows);
DataView\CacheDataView.cs (3)
395ch.Trace("Begin cache of {0} columns", caches.Length); 428ch.Trace("Number of rows determined as {0}", rowCount); 430ch.Trace("End cache of {0} columns", caches.Length);
DataView\Transposer.cs (2)
172ch.Trace("{0} of {1} input columns sliced into {2} columns", slicedCount, _cols.Length, toSave.Count); 179ch.Trace("Sliced data saved to {0} bytes", stream.Length);
Microsoft.ML.FastTree (15)
FastTree.cs (14)
439ch.Trace("Training {0}", GetDatasetStatistics(TrainSet)); 442ch.Trace("Validation {0}", GetDatasetStatistics(ValidSet)); 446ch.Trace("ComputeTests[{1}] {0}", 451ch.Trace("GC Total Memory = {0} MB", GC.GetTotalMemory(true) / 1024 / 1024); 453ch.Trace("Working Set = {0} MB", currentProcess.WorkingSet64 / 1024 / 1024); 454ch.Trace("Virtual Memory = {0} MB", 456ch.Trace("Private Memory = {0} MB", 458ch.Trace("Peak Working Set = {0} MB", currentProcess.PeakWorkingSet64 / 1024 / 1024); 459ch.Trace("Peak Virtual Memory = {0} MB", 817ch.Trace("Host = {0}", Environment.MachineName); 818ch.Trace("CommandLine = {0}", CmdParser.GetSettings(Host, FastTreeTrainerOptions, new TOptions())); 819ch.Trace("GCSettings.IsServerGC = {0}", System.Runtime.GCSettings.IsServerGC); 820ch.Trace("{0}", FastTreeTrainerOptions); 1939ch.Trace("{0} features stored in {1} flocks.", NumFeatures, flocks.Length);
Training\OptimizationAlgorithms\GradientDescent.cs (1)
58ch.Trace("dropout: Dropping {0} trees of {1} for rate {2}",
Microsoft.ML.StandardTrainers (3)
Standard\Online\OnlineLinear.cs (3)
134ch.Trace("{0} Initializing {1} on {2} features", DateTime.UtcNow, parent.Name, numFeatures); 208ch.Trace("{0} Starting training iteration {1}", DateTime.UtcNow, Iteration); 218ch.Trace("{0} Finished training iteration {1}; iterated over {2} examples.",
Microsoft.ML.Transforms (2)
MutualInformationFeatureSelection.cs (2)
502ch.Trace("Computing scores for column '{0}'", columns[i]); 505ch.Trace("Scores for column '{0}': {1}", columns[i], string.Join(", ", scores[i]));