79760835

Date: 2025-09-10 12:08:04
Score: 0.5
Natty:
Report link

Your PINN may be overfitting because the network is learning to satisfy the boundary and initial conditions without correctly enforcing the underlying differential equation across the entire domain. The high weight given to the data loss (the training points) causes the model to prioritize fitting those points perfectly, neglecting the physics-based loss.

You MAY try to use a residual-based curriculum learning approach: try yo dynamically sample more points from regions where the physics-based loss is high. The model will focus on the areas where it is failing to satisfy the governing differential equation, this may improve its generalization.

To provide a better answer, we may need more details and clarification.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: jei