Closed ghost closed 4 years ago
hi @vinhdiesal the scope of tensorboard_logger is more limited - it is able to plot how some metric changes during the course of training, but you'd need to get the value of the metric yourself and log it - you can view it as a "print" replacement. Not sure if any sklearn models directly expose metrics during training, except if you call partial_fit which is supported only for some model. With xgboost it should be possible I hope, but I never tried this. I assume by "AUC curve" you mean how AUC value changes.
I'm trying to view training runs on tensorboard using the tensorboard logger, but I'm having a hard time following the instructions.
or
I want to see the errors/AUC curves logged so I can view in tensorboard.
How do I configure the logger to get the curve?
Thanks,