-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
526 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
"""Constants shared between TensorBoard command line uploader and SDK uploader""" | ||
|
||
from tensorboard.plugins.distribution import ( | ||
metadata as distribution_metadata, | ||
) | ||
from tensorboard.plugins.graph import metadata as graphs_metadata | ||
from tensorboard.plugins.histogram import ( | ||
metadata as histogram_metadata, | ||
) | ||
from tensorboard.plugins.hparams import metadata as hparams_metadata | ||
from tensorboard.plugins.image import metadata as images_metadata | ||
from tensorboard.plugins.scalar import metadata as scalar_metadata | ||
from tensorboard.plugins.text import metadata as text_metadata | ||
|
||
ALLOWED_PLUGINS = [ | ||
scalar_metadata.PLUGIN_NAME, | ||
histogram_metadata.PLUGIN_NAME, | ||
distribution_metadata.PLUGIN_NAME, | ||
text_metadata.PLUGIN_NAME, | ||
hparams_metadata.PLUGIN_NAME, | ||
images_metadata.PLUGIN_NAME, | ||
graphs_metadata.PLUGIN_NAME, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.