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
{{ message }}
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
I was trying to implement and test a model based on the branch tutorial (05 Defining complex branching models. When simple sequential lists of layers do not suffice for your complex models, we present how to build complex branching models within neon. Link )
After fitting the model, how can we get the outputs of the final layer. I implemented a model with two branches (single branch node) . I get an error in model.get_outputs(). I looked at the source code, the variable x in my code is a list, and it fails at this line (dim0, dim1) = x.shape , with the error 'list' object has no attribute shape.
Is there a way to get_outputs() for a branch model?
P.S. i also saw this assert statement : assert not isinstance(x, list), "Can not get_outputs with Branch terminal" , does this mean that we cannot use get_outputs() for a branch model?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
I was trying to implement and test a model based on the branch tutorial (05 Defining complex branching models. When simple sequential lists of layers do not suffice for your complex models, we present how to build complex branching models within neon. Link )
After fitting the model, how can we get the outputs of the final layer. I implemented a model with two branches (single branch node) . I get an error in model.get_outputs(). I looked at the source code, the variable x in my code is a list, and it fails at this line (dim0, dim1) = x.shape , with the error 'list' object has no attribute shape.
Is there a way to get_outputs() for a branch model?
P.S. i also saw this assert statement : assert not isinstance(x, list), "Can not get_outputs with Branch terminal" , does this mean that we cannot use get_outputs() for a branch model?
The text was updated successfully, but these errors were encountered: