You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to check the derivatives of a PDE's solution relative to the independent variables and parameters of the equation.
However dde.Model(data, net).predict(...) returns numpy array only and cannot be used for differentiation. so I need tf.tensor.
It seems I should use Model.net() instead of Model.predict(), but when I use that I get the following error:
" 'FNN' object is not callable "
So I cannot have access to the neural net...
Any hint/suggestion will be appreciated.
Thanks
The text was updated successfully, but these errors were encountered:
I want to check the derivatives of a PDE's solution relative to the independent variables and parameters of the equation.
However dde.Model(data, net).predict(...) returns numpy array only and cannot be used for differentiation. so I need tf.tensor.
It seems I should use Model.net() instead of Model.predict(), but when I use that I get the following error:
" 'FNN' object is not callable "
So I cannot have access to the neural net...
Any hint/suggestion will be appreciated.
Thanks
The text was updated successfully, but these errors were encountered: