Skip to content

Instantly share code, notes, and snippets.

@zaccharieramzi
Created March 11, 2021 18:26
Show Gist options
  • Save zaccharieramzi/3d0a6118ec6b24b91a797a4525e3d124 to your computer and use it in GitHub Desktop.
Save zaccharieramzi/3d0a6118ec6b24b91a797a4525e3d124 to your computer and use it in GitHub Desktop.
A utility to delete all past tensorboard dev experiments in order to save some space (limit of 100M scalars).
tensorboard dev list | grep tensorboard | while read line ; do tensorboard dev delete --experiment_id ${line: -23: -1} ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment