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
* add logger by tensorboard
* Fix small issue of Tensorboard Logger
* reformat the code with flake8 & black
* Add tensorboard to requirements.txt
* Reformat code by black
* Refactor the tensorboard logging module
* fix conflicts
* Add unit test script of tensorboard-logging
* Reformat the code
* Update CHANGELOG.rst
* update doc
* pin tensorboard version
* revert default value
Co-authored-by: zzzzwj <zwj@smail.nju.edu.cn>
Co-authored-by: Yi-Xuan Xu <xuyx@lamda.nju.edu.cn>
Copy file name to clipboardExpand all lines: docs/quick_start.rst
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,13 @@ Ensemble-PyTorch uses a global logger to track and print the intermediate inform
57
57
58
58
logger = set_logger("classification_mnist_mlp")
59
59
60
-
Using the logger, all intermediate information will be printed on the command line and saved to the specified text file: classification_mnist_mlp.
60
+
With this logger, all intermediate information will be printed on the command line and saved to the specified text file: ``classification_mnist_mlp``.
61
+
62
+
In addition, when passing ``use_tb_logger=True`` into the method :meth:`set_logger`, you can use tensorboard to have a better visualization result on training and evaluating the ensemble.
0 commit comments