Skip to content

Commit a46b6db

Browse files
authored
Update logger.py
1 parent 9c39f7c commit a46b6db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

verl/utils/logger/logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def __init__(self, config: Dict[str, Any]) -> None:
9696
os.makedirs(tensorboard_dir, exist_ok=True)
9797
print(f"Saving tensorboard log to {tensorboard_dir}.")
9898
self.writer = SummaryWriter(tensorboard_dir)
99-
self.writer.add_hparams(hparam_dict=flatten_dict(config), metric_dict={"placeholder": 0})
99+
# self.writer.add_hparams(hparam_dict=flatten_dict(config), metric_dict={"placeholder": 0})
100100

101101
def log(self, data: Dict[str, Any], step: int) -> None:
102102
for key, value in data.items():

0 commit comments

Comments
 (0)