Skip to content
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

Replace Wandb callback's finalize with no-op #1193

Merged
merged 8 commits into from
Mar 30, 2020
1 change: 1 addition & 0 deletions pytorch_lightning/loggers/wandb.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ def finalize(self, status: str = 'success') -> None:
wandb.join(exit_code)
except TypeError:
wandb.join()
return exit_code
Borda marked this conversation as resolved.
Show resolved Hide resolved

@property
def name(self) -> str:
Expand Down