[Docs] Update Config File to Added WandBLogger Hook Details#1606
Open
Nourollah wants to merge 3 commits intoopen-mmlab:masterfrom
Open
[Docs] Update Config File to Added WandBLogger Hook Details#1606Nourollah wants to merge 3 commits intoopen-mmlab:masterfrom
Nourollah wants to merge 3 commits intoopen-mmlab:masterfrom
Conversation
jin-s13
reviewed
Aug 30, 2022
| interval=50, # Interval to print the log | ||
| hooks=[ | ||
| dict(type='TextLoggerHook', by_epoch=False), # The logger used to record the training process | ||
| dict(type='TensorboardLoggerHook', by_epoch=False), # The Tensorboard logger to record log offline |
Collaborator
There was a problem hiding this comment.
Why by_epoch is set to False by default?
Author
There was a problem hiding this comment.
I used this parameter to show the possibility of changing it to True or False to those who want to use it. It is possible to give it the True default value, I don't have any special reason to use the False value as default.
Member
There was a problem hiding this comment.
I think it's better not to change the default setting here. To show the options, we can add by_epoch=True here.
jin-s13
reviewed
Sep 6, 2022
Collaborator
ly015
reviewed
Sep 28, 2022
| pipeline=val_pipeline), | ||
| ) | ||
|
|
||
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Motivation
To better use MMPose functionality.
Modification
It's a few lines modified to add more logger hooks to docs.