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
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
It seems that the copy.deepcopy(list(strategy.model.parameters())) does work but returns the params as a list cloned from the source generator object in the evaluation/metrics/checkpoint.py which when used in logging/wandb_logger.py doesn't seem to pass through the if isinstance(value, Tensor): line since it demands a Tensor while the metric returns a List.
Oh no! It seems there are some PEP8 errors! 😕
Don't worry, you can fix them! 💪
Here's a report about the errors and where you can find them:
avalanche/logging/wandb_logger.py:122:81: E501 line too long (83 > 80 characters)
avalanche/logging/wandb_logger.py:145:49: E128 continuation line under-indented for visual indent
avalanche/logging/wandb_logger.py:146:49: E128 continuation line under-indented for visual indent
avalanche/logging/wandb_logger.py:149:37: E128 continuation line under-indented for visual indent
avalanche/logging/wandb_logger.py:169:1: E303 too many blank lines (3)
3 E128 continuation line under-indented for visual indent
1 E303 too many blank lines (3)
1 E501 line too long (83 > 80 characters)
Oh no! It seems there are some PEP8 errors! 😕
Don't worry, you can fix them! 💪
Here's a report about the errors and where you can find them:
avalanche/logging/wandb_logger.py:122:81: E501 line too long (83 > 80 characters)
avalanche/logging/wandb_logger.py:145:49: E128 continuation line under-indented for visual indent
avalanche/logging/wandb_logger.py:146:49: E128 continuation line under-indented for visual indent
avalanche/logging/wandb_logger.py:149:37: E128 continuation line under-indented for visual indent
avalanche/logging/wandb_logger.py:169:1: E303 too many blank lines (3)
3 E128 continuation line under-indented for visual indent
1 E303 too many blank lines (3)
1 E501 line too long (83 > 80 characters)
Oh no! It seems there are some PEP8 errors! 😕
Don't worry, you can fix them! 💪
Here's a report about the errors and where you can find them:
avalanche/logging/wandb_logger.py:122:81: E501 line too long (83 > 80 characters)
avalanche/logging/wandb_logger.py:145:49: E128 continuation line under-indented for visual indent
avalanche/logging/wandb_logger.py:146:49: E128 continuation line under-indented for visual indent
avalanche/logging/wandb_logger.py:149:37: E128 continuation line under-indented for visual indent
avalanche/logging/wandb_logger.py:169:1: E303 too many blank lines (3)
3 E128 continuation line under-indented for visual indent
1 E303 too many blank lines (3)
1 E501 line too long (83 > 80 characters)
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.
Fixing some errors with the current artifacts integration.