Skip to content
New issue

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

Fix to 'Model' object has no attribute '_container_nodes' error when using tf.keras.utils.plot_model(). #17668

Merged
merged 1 commit into from
Mar 17, 2018

Commits on Mar 13, 2018

  1. Fix to 'Model' object has no attribute '_container_nodes' error when …

    …using tf.keras.utils.plot_model().
    
    Fix to tensorflow#17633. Duplicate of tensorflow#17658
    'Model' object has no attribute '_container_nodes' error when using tf.keras.utils.plot_model().
    Replaced
    if node_key in model._container_nodes:
    with
    if node_key in model._network_nodes: # pylint: disable=protected-access
    
    in tensorflow\python\keras_impl\keras\utils\vis_utils.py.
    sibyjackgrove committed Mar 13, 2018
    Configuration menu
    Copy the full SHA
    4b0bb6d View commit details
    Browse the repository at this point in the history