Hi,
I’m training N models and I’m plotting on wandb their evaluation score. This results in having a run group where each panel has N plots, like in the figure below.
I want to also show a horizontal line that represents the baseline score that my model needs to beat. At the moment I’m doing that manually by adding an expression like baseline_value + 0 * ${evaluation}
. However, this is ugly since N lines will be created with the same name as the model runs.
Is there a way to automate this, and only produce one line with a different name (e.g. 'baseline'
)?