wandb.plot.line 不起作用,它只显示 table

wandb.plot.line does not work and it just shows a table

我使用了 WandB 提供的这个示例。但是,Web 界面只显示 table 而不是数字。

data = [[i, random.random() + math.sin(i / 10)] for i in range(100)]
        table = wandb.Table(data=data, columns=["step", "height"])
        wandb.log({'line-plot1': wandb.plot.line(table, "step", "height")})

这是WandB网页界面的截图:

此外,我对使用 table 的其他类型的图表也有同样的问题。

X-Post from the wandb forum

https://community.wandb.ai/t/wandb-plot-confusion-matrix-just-show-a-table/1744

如果您单击 Table 上方名为“自定义图表”的部分,它将显示您记录的线图。

记录 Table 也是预期的行为,因为这将允许用户在记录后以交互方式浏览 W&B Table 中记录的数据。