Searched refs:removed_op_names (Results 1 – 2 of 2) sorted by relevance
/external/tensorflow/tensorflow/contrib/meta_graph_transform/ |
D | meta_graph_transform.py | 147 def _clean_save_and_restore(graph_def, op, removed_op_names): argument 168 if not _is_removed(_compat.as_str(value), removed_op_names): 229 removed_op_names = list(set(starting_op_names) - set(ending_op_names)) 230 removed_op_names.sort() 232 for op_index, op_name in enumerate(removed_op_names): 236 removed_op_names[op_index] = op_name_parts[0] 238 removed_op_names[op_index] = op_name 262 _clean_save_and_restore(graph_def, node, removed_op_names) 464 collection_name, removed_op_names): argument 473 if not _is_removed_mentioned(any_value.value, removed_op_names): [all …]
|
D | meta_graph_transform_test.py | 457 removed_op_names = ['node2', 'node4', 'node5', '/a', '/b/b_1'] 459 base_meta_graph_def, meta_graph_def, collection_name, removed_op_names) 473 removed_op_names = ['node2', 'node4', 'node5', '/a', '/b/b_1'] 475 base_meta_graph_def, meta_graph_def, collection_name, removed_op_names) 496 removed_op_names = ['node2', 'node4', 'node5', '/a', '/b/b_1'] 498 base_meta_graph_def, meta_graph_def, collection_name, removed_op_names) 523 removed_op_names = ['node2', 'node4', 'node5', '/a', '/b/b_1'] 525 base_meta_graph_def, meta_graph_def, collection_name, removed_op_names) 544 removed_op_names = ['node2', 'node4', 'node5'] 547 removed_op_names) [all …]
|