-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
A: plotsRelated to the plotsRelated to the plots
Description
YAML doesn't permit dup keys also even if we change that to arrays we will have the issue of duplication and discrepancy, i.e. one template under one key and another one under the second key. So plot names should be unique string, whichever you write in target I suppose and datafile should go as key. We may still use a key if datafile is absent, this will simplify a very common one file case. So:
plots:
- train_vs_val:
x: epoch
y: loss
data: [train_loss.csv, val_loss.csv]
- val_f1.csv:
x: epoch
y: [f1_class_0, f1_class_1]
y_label: f1
# data is absent, using key value: val_f1.csv
# Separately plot since we have TWO plots, even though with the same data file
- scores_acc:
x: epoch
y: acc
data: scores.csv
- scores_auc:
x: epoch
y: auc
data: scores.csvOriginally posted by @Suor in #5980 (reply in thread)
mattlbeck
Metadata
Metadata
Assignees
Labels
A: plotsRelated to the plotsRelated to the plots