-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to show indented json string with tf.summary.text? #4247
Comments
Hello @SunDoge, Thanks for your interest in TensorBoard! The text dashboard does not allow for formatted text. However, from the content of the text itself, it seems like you are trying to store some tree formatted data about the experiment itself. Can you say more about your use case? Is it the case you are trying to store enough information to be able to go back and determine which results are associated with what computational / algorithmic settings? If so, you may be interested in what the hparams dashboard provides. https://www.tensorflow.org/tensorboard/hyperparameter_tuning_with_hparams If that does not suffice, please respond with what would be better. Thanks! |
Actually the text dashboard does allow formatted text - the text is interpreted as markdown, including support for certain HTML tags. To get the formatting you want, just wrap your text output in |
I want to show indented json string in tensorboard, for example,
but all I get is a single line:
Is there any way I can show the json string in multiline?
The text was updated successfully, but these errors were encountered: