SA-PINNs icon indicating copy to clipboard operation
SA-PINNs copied to clipboard

Implementation of the paper "Self-Adaptive Physics-Informed Neural Networks using a Soft Attention Mechanism" [AAAI-MLPS 2021]

Results 5 SA-PINNs issues
Sort by recently updated
recently updated
newest added

Thanks for your important contribution! I want to solve the Schrödinger equation,but i have no idea how to implement it.Could you please give some advice about it.Thank you in advance!...

Thank you for the great contribution. PINNs have been an amazing tool in scientific computing and this enhancement makes it better. I replicated the code of burger's equation and made...

Just setting the device is not useful. Is there any special trick to let it run on GPU?

Thank you very much for sharing your code. It has been extremely helpful and inspiring. I appreciate your contributions to the development of PINN. I have downloaded your source code...

mse_0_u = tf.reduce_mean(tf.square(u_weights*(u0 - u0_pred))) mse_f_u = tf.reduce_mean(tf.square(col_weights*f_u_pred)) order your paper, ![image](https://user-images.githubusercontent.com/7959396/233814138-218c12b3-be06-4041-bb4d-2195ff198f42.png) mse_0_u and mse_f_u should be: mse_0_u = tf.reduce_mean(u_weights*tf.square((u0 - u0_pred))) mse_f_u = tf.reduce_mean(col_weights*tf.square(f_u_pred)) I am not sure for...