-
|
Dear Dr. Lu Although I realize that this is a pretty silly question but I am solving a inverse problem wherein the coefficients of my PDE are functions of output for which I have written the PDE as - Here,the issue I am facing is that in sample example inverse problem provided on github upon invoking the statement
I am getting a output size as (2,1493,1) where I have 2 residual components at each training data point while 1493 are the number of training data points while in my case from the PDE function that is elaborated above I am getting the shape as (2,1493,1493) . So, the query I have is that is there something I am doing incorrectly because I suspected that I should multiply vectors using tf.multiply but it doesn't work when implemented.So any help in this regard will be helpful. Many Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
@lululxvi I did manage to resolve the above issue by simply changing the code |
Beta Was this translation helpful? Give feedback.
@lululxvi I did manage to resolve the above issue by simply changing the code
M1=M[:,0] ==> M1=M[:,0:1]So can this thread be closed