|
|
@ -21,7 +21,14 @@ |
|
|
|
#include "frontend/wav.h"
|
|
|
|
#include "utils/flags.h"
|
|
|
|
#include "utils/wn_string.h"
|
|
|
|
#include <gflags/gflags.h>
|
|
|
|
#ifdef GFLAGS_GFLAGS_H_
|
|
|
|
std::cout << "gflags已经进行了include" << std::endl; |
|
|
|
#else
|
|
|
|
#include "gflags/gflags.h"
|
|
|
|
std::cout << "gflags没有进行include" << std::endl; |
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
DEFINE_string(text, "", "kaldi style text input file"); |
|
|
|
DEFINE_string(wav_scp, "", "kaldi style wav scp"); |
|
|
|
DEFINE_double(is_penalty, 1.0, |
|
|
|