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
Due to this, the following will still print the warnings (multiple times):
importwarningswarnings.simplefilter("ignore") # This should ignore all warningswarnings.warn("test") # "test" is ignoredimportpl_bolts# Raises multiple "UnderReviewWarning"
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
The custom filterwarning in the under-review decorator leads to global rules being overwritten:
https://github.com/Lightning-AI/lightning-bolts/blob/c26c8d8f407de386038d5fb13297233a8aa052e7/pl_bolts/utils/stability.py#L75
Due to this, the following will still print the warnings (multiple times):
The text was updated successfully, but these errors were encountered: