Method
log_table
(self, table_name: str, experiences_table: pd.DataFrame, step: int)
Source from the content-addressed store, hash-verified
| 146 | self.console_logger = get_logger(__name__, in_ray_actor=True) |
| 147 | |
| 148 | def log_table(self, table_name: str, experiences_table: pd.DataFrame, step: int): |
| 149 | experiences_table = wandb.Table(dataframe=experiences_table) |
| 150 | self.log(data={table_name: experiences_table}, step=step) |
| 151 | |
| 152 | def log(self, data: dict, step: int, commit: bool = False) -> None: |
| 153 | """Log metrics.""" |
Callers
nothing calls this directly
Tested by
no test coverage detected