"This notebook let's you qickly compare the training progress of your experiments.\n",
"This notebook lets you quickly compare the training progress of your experiments, from within a notebook. For other use-cases we advise to use TensorBoard which is equipped with many more features than these few lines of code.\n",
"\n",
"You will need to have the tfevents files (these are TensorBoard formatted log files that Distiller creates)."
]
},
...
...
@@ -22,6 +23,12 @@
"import numpy as np\n",
"import matplotlib.pyplot as plt\n",
"\n",
"\n",
"def get_tags_list(path_to_events_file):\n",
" tags = [v.tag for e in tf.train.summary_iterator(path_to_events_file) for v in e.summary.value]\n",
This notebook let's you qickly compare the training progress of your experiments.
This notebook lets you quickly compare the training progress of your experiments, from within a notebook. For other use-cases we advise to use TensorBoard which is equipped with many more features than these few lines of code.
You will need to have the tfevents files (these are TensorBoard formatted log files that Distiller creates).