Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions tensorboard/plugins/graph/keras_util_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -982,12 +982,13 @@ def DISABLED_test_keras_model_to_graph_def_sequential_functional_model(

self.assertGraphDefToModel(expected_proto, model)

def test_keras_model_to_graph_def_functional_multiple_inbound_nodes_from_same_node(
# Enable after next sync to internal repo from Keras team.
def DISABLED_test_keras_model_to_graph_def_functional_multiple_inbound_nodes_from_same_node(
self,
):
expected_proto = """
node {
name: "functional_1/input_layer"
name: "functional/input_layer"
attr {
key: "keras_class"
value {
Expand All @@ -1002,8 +1003,8 @@ def test_keras_model_to_graph_def_functional_multiple_inbound_nodes_from_same_no
}
}
node {
name: "functional_1/__doubling_layer"
input: "functional_1/input_layer"
name: "functional/__doubling_layer"
input: "functional/input_layer"
attr {
key: "keras_class"
value {
Expand All @@ -1018,9 +1019,9 @@ def test_keras_model_to_graph_def_functional_multiple_inbound_nodes_from_same_no
}
}
node {
name: "functional_1/add"
input: "functional_1/__doubling_layer"
input: "functional_1/__doubling_layer"
name: "functional/add"
input: "functional/__doubling_layer"
input: "functional/__doubling_layer"
attr {
key: "keras_class"
value {
Expand Down