Searched refs:_FindMatchingTensor (Results 1 – 1 of 1) sorted by relevance
/external/tensorflow/tensorflow/contrib/quantize/python/ |
D | fold_batch_norms.py | 575 def _FindMatchingTensor(graph, match_pattern, scope): function 678 batch_mean_tensor = _FindMatchingTensor(graph, op_suffix_mean, context) 679 batch_variance_tensor = _FindMatchingTensor(graph, op_suffix_variance, 681 moving_mean_tensor = _FindMatchingTensor(graph, op_suffix_moving_mean, 683 moving_variance_tensor = _FindMatchingTensor(graph, op_suffix_moving_variance, 685 batch_epsilon = _FindMatchingTensor(graph, op_suffix_epsilon, context) 686 bn_decay_mean_tensor = _FindMatchingTensor(graph, op_suffix_bn_decay_mean, 688 bn_decay_var_tensor = _FindMatchingTensor(graph, op_suffix_bn_decay_var, 693 gamma_tensor = _FindMatchingTensor(graph, op_suffix_gamma, context)
|