8000 Merge pull request #607 from bcoppens/master · CJavaScala/tensorflow@e35e96d · GitHub
[go: up one dir, main page]

Skip to content

Commit e35e96d

Browse files
author
Daniel W Mane
committed
Merge pull request tensorflow#607 from bcoppens/master
Fix TensorBoard not displaying any images
2 parents 60114c4 + 5f0db85 commit e35e96d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tensorflow/tensorboard/components/tf-image-dashboard/tf-image-grid.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
_getTags: function(runToImages) {
154154
return _.chain(runToImages.base).values().flatten().union().value();
155155
},
156-
_getRuns(runToImages) {
156+
_getRuns: function(runToImages) {
157157
var r2i = runToImages.base;
158158
return _.keys(r2i).filter(function(x) {return r2i[x].length > 0;});
159159
},

tensorflow/tensorboard/dist/tf-tensorboard.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7939,7 +7939,7 @@ <h3>Horizontal Axis</h3>
79397939
_getTags: function(runToImages) {
79407940
return _.chain(runToImages.base).values().flatten().union().value();
79417941
},
7942-
_getRuns(runToImages) {
7942+
_getRuns: function(runToImages) {
79437943
var r2i = runToImages.base;
79447944
return _.keys(r2i).filter(function(x) {return r2i[x].length > 0;});
79457945
},

0 commit comments

Comments
 (0)
0