Reputation: 379
I'm currently struggling with a non-trivial scalar in tensorboard. The only peculiarity is that sometimes it cannot be defined (i.e. it has None value).
I would like to see it on my tensorboard and don't find the following workarounds acceptable:
The current tensorboard API does not let me achieve what I want, so I'm all ears to your workaround suggestions.
One of the possible solutions might be to have the shape of the tick to be different, like in the following image from this question, but I can't find the API to achieve that.
Thank You for Your time, looking forward to Your replies.
Upvotes: 2
Views: 628
Reputation: 1674
Just write numpy.nan
and it should meet all your needs:
Upvotes: 3