Skip to content

Instantly share code, notes, and snippets.

View alealv's full-sized avatar

Alejandro Gastón Alvarez alealv

  • Undisclosed
  • Berlin, Germany
View GitHub Profile
@stas00
stas00 / tb-rename-events.py
Created October 15, 2021 03:16
tensorboard rename event tags (based on https://stackoverflow.com/a/60080531/9201239)
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# this script renames event names in tensorboard log files
# it does the rename in place (so make back ups!)
#
# example:
#
# find . -name "*.tfevents*" -exec tb-rename-events.py {} "iteration-time" "iteration-time/iteration-time" \;
#