Cadene/bootstrap.pytorch

Metric name don't appear completely in plotly view

cdancette opened this issue · 0 comments

image

A possible fix I did in my local repo is to add the line

                scatter = go.Scatter(
                    x = x,
                    y = y,
                    name = view['view_interim'],
                    line = dict(color=color),
+                   hoverlabel=dict(namelength = -1),
                )

In this file: https://github.com/Cadene/bootstrap.pytorch/blob/master/bootstrap/views/plotly.py#L113

Result:

image