Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/examples/speech_commands/
Daccuracy_utils.py103 ground_truth_time = ground_truth[1]
104 if ground_truth_time > latest_possible_time:
118 ground_truth_time = ground_truth[1]
119 if (ground_truth_time > latest_time or
120 ground_truth_time > latest_possible_time):
122 if ground_truth_time < earliest_time:
126 has_gt_matched.count(ground_truth_time) == 0):
130 has_gt_matched.append(ground_truth_time)
Daccuracy_utils.cc71 const int64 ground_truth_time = ground_truth.second; in CalculateAccuracyStats() local
72 if (ground_truth_time > latest_possible_time) { in CalculateAccuracyStats()
89 const int64 ground_truth_time = ground_truth.second; in CalculateAccuracyStats() local
90 if ((ground_truth_time > latest_time) || in CalculateAccuracyStats()
91 (ground_truth_time > latest_possible_time)) { in CalculateAccuracyStats()
94 if (ground_truth_time < earliest_time) { in CalculateAccuracyStats()
99 (has_ground_truth_been_matched.count(ground_truth_time) == 0)) { in CalculateAccuracyStats()
104 has_ground_truth_been_matched.insert(ground_truth_time); in CalculateAccuracyStats()