-
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
Text data shown incomplete? #1258
Comments
Duplicate of #83 |
This is a result of the automatic reservoir sampling behavior in TensorBoard which only keeps 10 text summaries by default. With TensorBoard 1.9 you can customize the number of summaries kept for the text plugin using the |
@nfelt hi, I wonder if there is a way to keep indefinite number of the summary text, since I wish to store the model logging output, like the template |
You can set the value to |
@nfelt Hi, Thanks for your reply. I have just modified my commands starting up the tensorboard as follows: tensorboard --logdir ~/xxx/logs/ --samples_per_plugin='text=0,images=0,scalars=0' but None of the text or images or scalars will show on the board, so I am wondering if there is something wrong with my understanding of the |
I used tensorboard add_text() function to store the accuracy for every epoch; however in the end, only a limited number of texts are shown (for example, epoch 1->2->3->10->13->19->28 are shown, everything else is missing). How do I get all the data back? Is there a setting or anything that control the amount of text data to be shown?
The text was updated successfully, but these errors were encountered: