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
Hi Professor Lu,
Currently I see there is no MIONet class for pytorch backend.
By looking at the code for tensorflow.compat.v1, I guess I need to replace
if self.output_merger is None:
y = torch.einsum("ip,jp->ij", y_func, y_loc)
with
if self.output_merger is None:
y = torch.mul(y_func, y_loc)
y = torch.sum(y, axis=1, keepdim=True)
But I'm not sure if other things need to be modified when self.output_merger is not None.
Could you please advise?
The text was updated successfully, but these errors were encountered:
Hi Professor Lu,
Currently I see there is no MIONet class for pytorch backend.
By looking at the code for tensorflow.compat.v1, I guess I need to replace
with
But I'm not sure if other things need to be modified when
self.output_merger is not None
.Could you please advise?
The text was updated successfully, but these errors were encountered: