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.py212 def update_confusion_matrix_variables(variables_to_update, argument
261 if variables_to_update is None:
268 key for key in variables_to_update if key in list(ConfusionMatrix)):
273 list(ConfusionMatrix), variables_to_update.keys()))
276 key for key in variables_to_update if key not in list(ConfusionMatrix)
345 update_tn = ConfusionMatrix.TRUE_NEGATIVES in variables_to_update
346 update_fp = ConfusionMatrix.FALSE_POSITIVES in variables_to_update
347 update_fn = ConfusionMatrix.FALSE_NEGATIVES in variables_to_update
360 if matrix_cond in variables_to_update:
363 variables_to_update[matrix_cond]))