-
Notifications
You must be signed in to change notification settings - Fork 394
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
guide: detailed plots spec for x
and y
fields
#4188
Conversation
Link Check ReportThere were no links to check! |
Thanks @dberenbaum ! |
x
and y
fields
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Examples for plot output fields could be useful (since there are so many for top-level plots). Specifically 👇🏼
|
||
- Plot outputs: column/field name found in the source plots file. | ||
- **Plot outputs** (_string_): one column/field name. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here
template: confusion | ||
``` | ||
|
||
- **Plot outputs** (_string_): one column/field name. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And here
If plot ID is an arbitrary string, `x` may either be one column/field name, | ||
or a dictionary of file paths each mapped to one column/field name (the | ||
number of column/field names must match the number in `y`). | ||
|
||
```yaml | ||
plots: | ||
- train_val_test: # single x | ||
y: | ||
train.csv: [train_acc, val_acc] | ||
test.csv: test_acc | ||
x: epoch | ||
- roc_vs_prc: # x dict | ||
y: | ||
precision_recall.json: precision |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This example is pretty long. Maybe we can summarize? And/or collapse the entire Plots/Available fields section (with <details>
). For now
Fixes #4173