VRMSE Metric Behavior for Gray-Scott Steady State Cases #19
-
Hi, I'm working with the Gray-Scott Reaction Diffusion examples for operator learning model training. I've noticed a potential issue with the VRMSE (Variance-normalized Root Mean Square Error) metric for steady state cases. Specifically, when evaluating predictions on steady state examples:
Could you clarify:
Thank you for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Hello, This is expected behavior. VRMSE is a normalized metric that captures error relative to the magnitude of the overall variation in the field, so it intentionally penalizes error larger than the field variance which may occur if a model is unable to recognize that a system is approaching a steady state. In all cases, the reported baselines include all data. If steady-state scenarios aren't relevant to your application, since this is a fairly common scenario in Gray-Scott, we do list the trajectories that reach steady state in the readme so it is possible to exclude them manually. During training, the Short version:
|
Beta Was this translation helpful? Give feedback.
Hello,
This is expected behavior. VRMSE is a normalized metric that captures error relative to the magnitude of the overall variation in the field, so it intentionally penalizes error larger than the field variance which may occur if a model is unable to recognize that a system is approaching a steady state.
In all cases, the reported baselines include all data. If steady-state scenarios aren't relevant to your application, since this is a fairly common scenario in Gray-Scott, we do list the trajectories that reach steady state in the readme so it is possible to exclude them manually. During training, the
min_std
parameter of the dataset can be used to avoid penalizing steady state predic…