Skip to content

Commit

Permalink
Use 'key/axis' naming in Tensorboard
Browse files Browse the repository at this point in the history
  • Loading branch information
naeioi authored Dec 4, 2019
1 parent 5af2e52 commit 3c4f489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dowel/tensor_board_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def _record_tabular(self, data, step):
for axis in self._additional_x_axes:
if key is not axis and key in data.as_dict:
x = data.as_dict[axis]
self._record_kv('{}@{}'.format(key, axis), value, x)
self._record_kv('{}/{}'.format(key, axis), value, x)
else:
self._record_kv(key, value, step)
data.mark(key)
Expand Down

0 comments on commit 3c4f489

Please sign in to comment.