387fa1c6e15f338d36714caedca5af5ff8422166,autokeras/graph.py,Graph,to_concat_skip_model,#Graph#Any#Any#,87
Before Change
new_node_id = self.node_to_id[0]
layer = Concatenate()
layer.build([get_int_tuple(start.output_shape), get_int_tuple(end.output_shape)])
self._add_edge(layer, new_node_id, self.adj_list[output_id][0][0], False)
self._add_edge(layer, input_id, self.adj_list[output_id][0][0], False)
self._redirect_edge(output_id, self.adj_list[output_id][0][0], new_node_id)
After Change
new_node_id = self.node_to_id[0]
old_node_id = self.adj_list[output_id][0][0]
layer = Concatenate()
layer.build([get_int_tuple(end.output_shape), get_int_tuple(start.output_shape)])
self._add_edge(layer, new_node_id, old_node_id, False)
self._add_edge(layer, input_id, old_node_id, False)
self._redirect_edge(output_id, old_node_id, new_node_id)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: keras-team/autokeras
Commit Name: 387fa1c6e15f338d36714caedca5af5ff8422166
Time: 2018-01-01
Author: jhfjhfj1@gmail.com
File Name: autokeras/graph.py
Class Name: Graph
Method Name: to_concat_skip_model
Project Name: keras-team/autokeras
Commit Name: 0a80b9769115d291f15c244429793eda4cb8ecad
Time: 2017-12-28
Author: jhfjhfj1@gmail.com
File Name: autokeras/graph.py
Class Name: Graph
Method Name: produce_model
Project Name: keras-team/autokeras
Commit Name: ae9083442dea9f4d318b261a58ee527daaf8dce1
Time: 2018-01-01
Author: jhfjhfj1@gmail.com
File Name: autokeras/graph.py
Class Name: Graph
Method Name: to_add_skip_model