-
Notifications
You must be signed in to change notification settings - Fork 391
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove configure_callbacks #1647
Conversation
Unsure why pytest self cancelled |
OK some args may lead nowhere after this change, e.g. |
Let's wait for feedback from Lightning-AI/pytorch-lightning#18784 |
This has been happening to all of our tests recently and I have no idea why. Anyone who figures this out is my hero. |
Lightning-AI/pytorch-lightning#18784 proposed one possible workaround that will allow us to define defaults but also allow the user to override them. But I'm not sure if the added complexity is worth it. Thoughts? |
It does sound like a lot of extra complexity to take on and manage - I still think leaving it to the users to set their own callbacks whilst providing a few examples of best practice is the way to go |
* Remove configure_callbacks * Remove unused imports
The use of configure_callbacks was blocking any use of
callbacks
and caused #1641This is now removed. This will require the use to configure these callbacks but this is already documented here
Fixes #1640
Fixes #1641
Fixes #1642
Fixes #1645