We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0df7eee commit 2295b51Copy full SHA for 2295b51
docs/src/explicit_interface.md
@@ -38,3 +38,19 @@ log_audios
38
```@docs
39
log_embeddings
40
```
41
+
42
+## Custom Scalars plugin
43
+See [TensorBoard Custom Scalar page](https://github.com/tensorflow/tensorboard/tree/master/tensorboard/plugins/custom_scalar).
44
45
+For example, to combine in the same plot panel the two curves logged under tags `"Curve/1"` and `"Curve/2"` you can run once the command:
46
+```julia
47
+layout = Dict("Cat" => Dict("Curve" => ("Multiline", ["Curve/1", "Curve/2"])))
48
49
+log_custom_scalar(lg, layout)
50
51
+```
52
53
+See also the documentation below
54
+```@docs
55
+log_custom_scalars
56
0 commit comments