We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Tiny annoyance, but wouldn't it make sense to put the monitor value in the default value of the filename so it's not just epoch-X-step-y by default?
epoch-X-step-y
Couldn't something like this work here?
def _format_checkpoint_name( self, filename: Optional[str], metrics: Dict[str, Tensor], prefix: str = "", auto_insert_metric_name: bool = True, ) -> str: if not filename: if self.monitor is not None and self.monitor in metrics: filename = "{epoch}" + self.CHECKPOINT_JOIN_CHAR + "{step}" + self.CHECKPOINT_JOIN_CHAR + f"{{{self.monitor}}}" # filename is not set, use default name else: filename = "{epoch}" + self.CHECKPOINT_JOIN_CHAR + "{step}"
No response
Happy to put it in MR
cc @Borda
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description & Motivation
Tiny annoyance, but wouldn't it make sense to put the monitor value in the default value of the filename so it's not just
epoch-X-step-y
by default?Pitch
Couldn't something like this work here?
Alternatives
No response
Additional context
Happy to put it in MR
cc @Borda
The text was updated successfully, but these errors were encountered: