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
in SingleOutputStrategy.build(self, layer_sizes_branch, layer_sizes_trunk)
29 def build(self, layer_sizes_branch, layer_sizes_trunk):
30 if layer_sizes_branch[-1] != layer_sizes_trunk[-1]:
---> 31 raise AssertionError(
32 "Output sizes of branch net and trunk net do not match."
33 )
34 branch = self.net.build_branch_net(layer_sizes_branch)
35 trunk = self.net.build_trunk_net(layer_sizes_trunk)
AssertionError: Output sizes of branch net and trunk net do not match.**
The text was updated successfully, but these errors were encountered:
I am trying to run the code on Darcy_rectangular_pwc and getting following error. Please look into it. Thanks
code:
error:
The text was updated successfully, but these errors were encountered: