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 am trying to implement a hypernetwork that only has unconditional inputs and train the models in batches.
Nevertheless, the
Weights = hnet.forward(train_features)
returns the ret_format as 'sequential' and
hidden = mnet.forward(train_features, weights=Weights)
outputs the "AssertionError" message that "assert(len(weights) == len(self.param_shapes))".
I understand where the issue lies, but following your documentation, I am not able to convince "mnet.forward" to input weights in 'sequential' format.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I am trying to implement a hypernetwork that only has unconditional inputs and train the models in batches.
Nevertheless, the
Weights = hnet.forward(train_features)
returns the ret_format as 'sequential' and
hidden = mnet.forward(train_features, weights=Weights)
outputs the "AssertionError" message that "assert(len(weights) == len(self.param_shapes))".
I understand where the issue lies, but following your documentation, I am not able to convince "mnet.forward" to input weights in 'sequential' format.
Thanks for the help!
Roman
Beta Was this translation helpful? Give feedback.
All reactions