Home
last modified time | relevance | path

Searched refs:variables_to_update (Results 1 – 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/python/keras/utils/
Dmetrics_utils.py236 def update_confusion_matrix_variables(variables_to_update, argument
299 if variables_to_update is None:
302 key for key in variables_to_update if key in list(ConfusionMatrix)):
307 list(ConfusionMatrix), variables_to_update.keys()))
309 variable_dtype = list(variables_to_update.values())[0].dtype
328 key for key in variables_to_update if key not in list(ConfusionMatrix)
436 update_tn = ConfusionMatrix.TRUE_NEGATIVES in variables_to_update
437 update_fp = ConfusionMatrix.FALSE_POSITIVES in variables_to_update
438 update_fn = ConfusionMatrix.FALSE_NEGATIVES in variables_to_update
452 if matrix_cond in variables_to_update:
[all …]