-
Notifications
You must be signed in to change notification settings - Fork 11
feat: change log time for wandb #166
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
| None, description="List of callbacks to report to. If None, no callbacks will be used" | ||
| ) | ||
| log_interval_time: float = Field( | ||
| 0.1, description="Sampling interval for the system monitor in seconds for Wandb logger." |
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.
Это в чем измеряется?
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.
in seconds. ну я поставила 0.1 от секунды получаеся
| def start_run(self, run_name: str, dirpath: Path, log_interval_time: float) -> None: | ||
| """Starts a new run and sets the directory for storing logs. | ||
| Args: | ||
| run_name: Name of the run. | ||
| dirpath: Path to the directory where logs will be saved. | ||
| log_interval_time: Sampling interval for the system monitor in seconds. | ||
| (not utilized in Tensorboard logging). | ||
| """ | ||
| self.run_name = run_name | ||
| self.dirpath = dirpath | ||
| self.log_interval_time = log_interval_time |
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.
если в тензорборде не испольуется то тогда мб сделать float | None = None
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.
Или просто чтобы логирование могло прнимать доп параметры, а потом каждый логер сам отдельно их обрабатывать
Uh oh!
There was an error while loading. Please reload this page.