feat: sync enhancement #799
Merged
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.
This pull request includes several enhancements and refactorings to the
swanlab/sync
module, specifically targeting the tensorboard and wandb synchronization functionalities. The changes introduce a common utility function for extracting arguments and add support for additional tensorboard methods.Enhancements to argument extraction:
swanlab/sync/tensorboard.py
: Added_extract_args
function to extract parameters fromargs
andkwargs
in a consistent manner.swanlab/sync/wandb.py
: Added_extract_args
function to extract parameters fromargs
andkwargs
in a consistent manner.Enhancements to tensorboard synchronization:
swanlab/sync/tensorboard.py
: Modifiedpatched_init
to use_extract_args
for extracting parameters and added support foradd_image
method with proper handling of different image formats. [1] [2] [3] [4] [5] [6]Enhancements to wandb synchronization:
swanlab/sync/wandb.py
: Modifiedpatched_init
andpatched_config_update
to use_extract_args
for extracting parameters and added support forlog
method with filtering of non-scalar types. [1] [2] [3]Updates to tests:
test/sync_tensorboardX.py
: Added test foradd_image
method to validate the new functionality.test/sync_tensorboard_torch.py
: Added test foradd_image
method to validate the new functionality.test/sync_wandb.py
: Modified test to includenotes
parameter and update configuration to validate the new functionality.