-
Notifications
You must be signed in to change notification settings - Fork 755
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an example of Poisson-like 2D problem for multioutput DeepONet Add the example #1549
base: master
Are you sure you want to change the base?
Add an example of Poisson-like 2D problem for multioutput DeepONet Add the example #1549
Conversation
As the code of multi-output is merged, please double check this PR. |
The example works correctly for all strategies, both with TF 1.x and 2.x. |
""" | ||
Poisson-like 2D problem | ||
Supported backend: tensorflow.compat.v1, tensorflow | ||
""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"""Supported backend: tensorflow.compat.v1, tensorflow
Poisson-like 2D problem ... More explanation...
"""
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm afraid this is also a fake problem used for demonstration. The equations are of the form dA_xx = f
and dB_tt = f
, where dA_xx
and dB_tt
are the second-order derivatives of some A and B with respect to spatial and temporal dimensions, respectively.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Umm. Is it possible to have a real example?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, but the suitable real problem does not come to mind. Do you have any idea?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A 2D fluid problem with outputs of u and v?
The separate PR for #1532