We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
instead of using:
layers_to_use = [model.layer1, model.layer2]
and then accessing them in the custom function as:
layer_outputs[0] and layer_outputs[1]
we can define layers_to_use as a dict which makes custom_func much more intuitive
layers_to_use
custom_func
layers_to_use = { 'layer1': model.layer1, 'layer2': model.layer2 }
layer_outputs['layer2'] and layer_outputs['layer1']
The text was updated successfully, but these errors were encountered:
No branches or pull requests
instead of using:
and then accessing them in the custom function as:
we can define
layers_to_use
as a dict which makescustom_func
much more intuitiveand then accessing them in the custom function as:
The text was updated successfully, but these errors were encountered: