Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/examples/speech_commands/
Daccuracy_utils.cc78 stats->how_many_false_positives = 0; in CalculateAccuracyStats()
109 ++stats->how_many_false_positives; in CalculateAccuracyStats()
117 LOG(INFO) << "No ground truth yet, " << stats.how_many_false_positives in PrintAccuracyStats()
128 (stats.how_many_false_positives * 100.0f) / in PrintAccuracyStats()
Daccuracy_utils.h30 how_many_false_positives(0), in StreamingAccuracyStats()
35 int32 how_many_false_positives; member
Daccuracy_utils_test.cc49 EXPECT_EQ(1, stats.how_many_false_positives); in TEST()
Dtest_streaming_accuracy.cc282 int32 false_positive_delta = stats.how_many_false_positives - in main()
283 previous_stats.how_many_false_positives; in main()