You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, most of the learners write some information via Trace.WriteLine. It is a bit simplistic. You can get the information written to a source by adding to trace listeners like this:
// Trace to console
Trace.Listeners.Add(new ConsoleTraceListener()));// Trace to file.varstreamWriter=new StreamWriter("TrainingLog.txt");
Trace.Listeners.Add(new TextWriterTraceListener(streamWriter)));
Hi! Is it possible to monitor "epoch-by-epoch" the training progress of a given algorithm (neural nets, particularly)?
Thanks a lot in advance
The text was updated successfully, but these errors were encountered: