-
Notifications
You must be signed in to change notification settings - Fork 29.9k
s2s: fix LR logging, remove some dead code. #6205
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #6205 +/- ##
==========================================
+ Coverage 79.65% 79.73% +0.07%
==========================================
Files 146 146
Lines 26607 26607
==========================================
+ Hits 21194 21214 +20
+ Misses 5413 5393 -20
Continue to review full report at Codecov.
|
@@ -159,11 +158,9 @@ def _feature_file(self, mode): | |||
@pl.utilities.rank_zero_only | |||
def on_save_checkpoint(self, checkpoint: Dict[str, Any]) -> None: | |||
save_path = self.output_dir.joinpath("best_tfmr") | |||
save_path.mkdir(exist_ok=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it created somewhere else?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah in save_pretrained
No description provided.