Adds a basic training script for a simple audio model to our examples. See third_party/docs_src/tutorials/audio_recognition.md for full documentation PiperOrigin-RevId: 165025732
60 lines
2.2 KiB
C++
60 lines
2.2 KiB
C++
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
==============================================================================*/
|
|
|
|
#include "tensorflow/examples/speech_commands/accuracy_utils.h"
|
|
|
|
#include "tensorflow/core/framework/tensor_testutil.h"
|
|
#include "tensorflow/core/lib/core/status_test_util.h"
|
|
#include "tensorflow/core/lib/io/path.h"
|
|
#include "tensorflow/core/lib/strings/str_util.h"
|
|
#include "tensorflow/core/platform/env.h"
|
|
#include "tensorflow/core/platform/test.h"
|
|
|
|
namespace tensorflow {
|
|
|
|
TEST(AccuracyUtilsTest, ReadGroundTruthFile) {
|
|
string file_name = tensorflow::io::JoinPath(tensorflow::testing::TmpDir(),
|
|
"ground_truth.txt");
|
|
string file_data = "a,10\nb,12\n";
|
|
TF_ASSERT_OK(WriteStringToFile(Env::Default(), file_name, file_data));
|
|
|
|
std::vector<std::pair<string, int64>> ground_truth;
|
|
TF_ASSERT_OK(ReadGroundTruthFile(file_name, &ground_truth));
|
|
ASSERT_EQ(2, ground_truth.size());
|
|
EXPECT_EQ("a", ground_truth[0].first);
|
|
EXPECT_EQ(10, ground_truth[0].second);
|
|
EXPECT_EQ("b", ground_truth[1].first);
|
|
EXPECT_EQ(12, ground_truth[1].second);
|
|
}
|
|
|
|
TEST(AccuracyUtilsTest, CalculateAccuracyStats) {
|
|
StreamingAccuracyStats stats;
|
|
CalculateAccuracyStats({{"a", 1000}, {"b", 9000}},
|
|
{{"a", 1200}, {"b", 5000}, {"a", 8700}}, 10000, 500,
|
|
&stats);
|
|
EXPECT_EQ(2, stats.how_many_ground_truth_words);
|
|
EXPECT_EQ(2, stats.how_many_ground_truth_matched);
|
|
EXPECT_EQ(1, stats.how_many_false_positives);
|
|
EXPECT_EQ(1, stats.how_many_correct_words);
|
|
EXPECT_EQ(1, stats.how_many_wrong_words);
|
|
}
|
|
|
|
TEST(AccuracyUtilsTest, PrintAccuracyStats) {
|
|
StreamingAccuracyStats stats;
|
|
PrintAccuracyStats(stats);
|
|
}
|
|
|
|
} // namespace tensorflow
|