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.**
I am trying to run the code on Darcy_rectangular_pwc and getting following error. Please look into it. Thanks
code:
error: