ehsanhaghighat / sciann

Deep learning for Engineers - Physics Informed Deep Learning
htttp://sciann.com
Other
325 stars 116 forks source link

loss name meaning in the training history object #81

Closed pradhyumna85 closed 1 year ago

pradhyumna85 commented 1 year ago

Hi, what does the losses names mean like: epochmul_loss And how they relate to the PDE losses/constraints ?

ehsanhaghighat commented 1 year ago

Same order as you define targets in SciModel.You can rename your losses for better names: L1 = sn.rename(L1, “my_fav_name”)On Feb 23, 2023, at 8:06 AM, Pradyumna Singh Rathore @.***> wrote: Hi, what does the losses names mean like: epochmul_loss And how they relate to the PDE losses/constraints ?

—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you are subscribed to this thread.Message ID: @.***>

pradhyumna85 commented 1 year ago

Thank you @ehsanhaghighat.