You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, i want make combined plot of 2 metrics, for example train/valid.
How to do it during training I understand, you need to add logging for one title
logger.report_scalar(title="unified graph", series="series A", iteration=i, value=1. / (i + 1))
logger.report_scalar(title="unified graph", series="series B", iteration=i, value=10. / (i + 1))
But how to combine graphs simply by selecting them in the interface? Is there such a possibility, because it is not possible to integrate this into training
The text was updated successfully, but these errors were encountered:
@lolpa1n Combining arbitrary scalar plots is not currently available, but we'll definitely consider adding this when the opportunity presents itself :)
Hello, i want make combined plot of 2 metrics, for example train/valid.
How to do it during training I understand, you need to add logging for one title
But how to combine graphs simply by selecting them in the interface? Is there such a possibility, because it is not possible to integrate this into training
The text was updated successfully, but these errors were encountered: