Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change colors of function plots in Tensorboard?

I'm trying to compare different learning-rate-decays using Tensorflow. Therefore I visualize the cost functions in Tensorboard ('EVENTS'-tab). My problem is that the different plots of the functions are in very similar colors making it hard to compare them. Is there any possibility to change those colors?

like image 244
Tobias Scheithauer Avatar asked Jul 09 '16 13:07

Tobias Scheithauer


People also ask

How do you zoom out on a TensorBoard?

Head over to localhost:6006 to see TensorBoard on your local machine. We can see some of the scalar metrics that are provided by default With the linear Classifier. We can also Expand and Zoom into any of these graphs. Double-clicking allows us to zoom out.

What is the use of TensorBoard?

TensorBoard is a tool for providing the measurements and visualizations needed during the machine learning workflow. It enables tracking experiment metrics like loss and accuracy, visualizing the model graph, projecting embeddings to a lower dimensional space, and much more.


2 Answers

Just create different summary writes with different log files for each learning rate. Then launch the tensorboard tool using: tensorboard --logdir=tag1:/path/to/summary/one,tag2:/path/to/summary/two

like image 198
George V Jose Avatar answered Oct 24 '22 08:10

George V Jose


There's currently no way to change those colors, but a recent release has made the colors more differentiated. Try updating and seeing if that helps.

like image 29
Shan Carter Avatar answered Oct 24 '22 08:10

Shan Carter