aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-01-31 16:22:14 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-31 16:46:49 -0800
commit6bf65eb357570a686fac73de6152054418950aa3 (patch)
treeb6c3039a68db28ae98f1348ab5e6953d128cefdc
parent69251f989b887a355bcd392b4776a370c829b353 (diff)
Changed the default size guidance values for image and audio summaries to 10. It used to be 4. We upped this number because the image dashboard now has a slider that lets the user scroll through steps. Previously, image summaries at those past steps were inaccessible.
Change: 146180737
-rw-r--r--tensorflow/tensorboard/backend/application.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/tensorboard/backend/application.py b/tensorflow/tensorboard/backend/application.py
index d977491cf2..a40b2cd221 100644
--- a/tensorflow/tensorboard/backend/application.py
+++ b/tensorflow/tensorboard/backend/application.py
@@ -46,8 +46,8 @@ from tensorflow.tensorboard.lib.python import http_util
DEFAULT_SIZE_GUIDANCE = {
event_accumulator.COMPRESSED_HISTOGRAMS: 500,
- event_accumulator.IMAGES: 4,
- event_accumulator.AUDIO: 4,
+ event_accumulator.IMAGES: 10,
+ event_accumulator.AUDIO: 10,
event_accumulator.SCALARS: 1000,
event_accumulator.HISTOGRAMS: 50,
}