-
Wandb project just record the loss curve, but how to obtain the predicted values? I want to draw a diagonal graph. |
Beta Was this translation helpful? Give feedback.
Answered by
cw-tan
May 5, 2025
Replies: 1 comment 1 reply
-
You can use a |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ccccyf
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use a
test
with theTestTimeXYZFileWriter
to generate a.xyz
file with both reference and predicted value on the test set (you must configure a test set to do this). Then, you can use this script to make a parity plot. The description is outdated, but it works with this setup, just call it aspython parity_plot.py path/to/xyz_from_TestTimeXYZFileWriter
.