https://github.com/googleprivate/pde-superresolution-2d/blob/6981ff1ee8a1bc99275d34d5f835213d02b174f8/pde_superresolution_2d/core/equations.py#L159-L161
@shoyer @JiaweiZhuang I think we might want to change the signature of equation.time_derivative to include the time:
def time_derivative(
self, time, grid: grids.Grid, **inputs: tf.Tensor
) -> Dict[str, tf.Tensor]:
For cases where the equation depends explicitly on time (e.g time-dependent forcing)
https://github.com/googleprivate/pde-superresolution-2d/blob/6981ff1ee8a1bc99275d34d5f835213d02b174f8/pde_superresolution_2d/core/equations.py#L159-L161
@shoyer @JiaweiZhuang I think we might want to change the signature of
equation.time_derivativeto include the time:For cases where the equation depends explicitly on time (e.g time-dependent forcing)