You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.5 KiB
70 lines
2.5 KiB
3 years ago
|
// Copyright (c) 2022 PaddlePaddle 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.
|
||
|
|
||
3 years ago
|
// Note: Do not print/log ondemand object.
|
||
|
|
||
3 years ago
|
#include "base/flags.h"
|
||
|
#include "base/log.h"
|
||
|
#include "kaldi/matrix/kaldi-matrix.h"
|
||
|
#include "kaldi/util/kaldi-io.h"
|
||
|
#include "utils/file_utils.h"
|
||
|
#include "utils/simdjson.h"
|
||
|
|
||
|
DEFINE_string(json_file, "", "cmvn json file");
|
||
|
DEFINE_string(cmvn_write_path, "./cmvn.ark", "write cmvn");
|
||
|
DEFINE_bool(binary, true, "write cmvn in binary (true) or text(false)");
|
||
|
|
||
|
using namespace simdjson;
|
||
|
|
||
|
int main(int argc, char* argv[]) {
|
||
|
gflags::ParseCommandLineFlags(&argc, &argv, false);
|
||
|
google::InitGoogleLogging(argv[0]);
|
||
3 years ago
|
|
||
|
LOG(INFO) << "cmvn josn path: " << FLAGS_json_file ;
|
||
|
padded_string json = padded_string::load(FLAGS_json_file);
|
||
3 years ago
|
|
||
|
ondemand::parser parser;
|
||
3 years ago
|
ondemand::document doc = parser.iterate(json);
|
||
|
ondemand::value val = doc;
|
||
|
|
||
|
ondemand::array mean_stat = val["mean_stat"];
|
||
3 years ago
|
std::vector<kaldi::BaseFloat> mean_stat_vec;
|
||
|
for (double x : mean_stat) {
|
||
|
mean_stat_vec.push_back(x);
|
||
|
}
|
||
3 years ago
|
// LOG(INFO) << mean_stat; this line will casue simdjson::simdjson_error("Objects and arrays can only be iterated when they are first encountered")
|
||
|
|
||
|
ondemand::array var_stat = val["var_stat"];
|
||
3 years ago
|
std::vector<kaldi::BaseFloat> var_stat_vec;
|
||
|
for (double x : var_stat) {
|
||
|
var_stat_vec.push_back(x);
|
||
|
}
|
||
|
|
||
3 years ago
|
kaldi::int32 frame_num = uint64_t(val["frame_num"]);
|
||
|
LOG(INFO) << "nframe: " << frame_num;
|
||
|
|
||
3 years ago
|
size_t mean_size = mean_stat_vec.size();
|
||
|
kaldi::Matrix<double> cmvn_stats(2, mean_size + 1);
|
||
|
for (size_t idx = 0; idx < mean_size; ++idx) {
|
||
|
cmvn_stats(0, idx) = mean_stat_vec[idx];
|
||
|
cmvn_stats(1, idx) = var_stat_vec[idx];
|
||
|
}
|
||
|
cmvn_stats(0, mean_size) = frame_num;
|
||
3 years ago
|
LOG(INFO) << cmvn_stats;
|
||
|
|
||
3 years ago
|
kaldi::WriteKaldiObject(cmvn_stats, FLAGS_cmvn_write_path, FLAGS_binary);
|
||
3 years ago
|
LOG(INFO) << "cmvn stats have write into: " << FLAGS_cmvn_write_path;
|
||
|
LOG(INFO) << "Binary: " << FLAGS_binary;
|
||
3 years ago
|
return 0;
|
||
|
}
|