Here is the code snipped being used. The plots show up for some runs and for some they do not. The behavior is highly inconsistent.
def line_plot(
self,
x_values,
y_values,
x_title: str = "x",
y_title: str = "y",
chart_title: str = "line_chart",
):
data = [[x, y] for (x, y) in zip(x_values, y_values)]
table = wandb.Table(data=data, columns=[x_title, y_title])
self.run.log(
{chart_title: wandb.plot.line(table, x_title, y_title, title=chart_title)}
)