compute-fbank-feats.cc File Reference
Include dependency graph for compute-fbank-feats.cc:

Go to the source code of this file.

Functions

int main (int argc, char *argv[])
 

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)

Definition at line 27 of file compute-fbank-feats.cc.

References VectorBase< Real >::AddRowSumMat(), VectorBase< Real >::AddVec(), OfflineFeatureTpl< F >::ComputeFeatures(), WaveData::Data(), SequentialTableReader< Holder >::Done(), WaveData::Duration(), ParseOptions::GetArg(), rnnlm::i, TableWriter< Holder >::IsOpen(), KALDI_ASSERT, KALDI_ERR, KALDI_LOG, KALDI_VLOG, KALDI_WARN, SequentialTableReader< Holder >::Key(), SequentialTableReader< Holder >::Next(), ParseOptions::NumArgs(), MatrixBase< Real >::NumRows(), TableWriter< Holder >::Open(), ParseOptions::PrintUsage(), ParseOptions::Read(), FbankOptions::Register(), ParseOptions::Register(), WaveData::SampFreq(), FbankOptions::use_energy, SequentialTableReader< Holder >::Value(), and TableWriter< Holder >::Write().

27  {
28  try {
29  using namespace kaldi;
30  const char *usage =
31  "Create Mel-filter bank (FBANK) feature files.\n"
32  "Usage: compute-fbank-feats [options...] <wav-rspecifier> "
33  "<feats-wspecifier>\n";
34 
35  // Construct all the global objects.
36  ParseOptions po(usage);
37  FbankOptions fbank_opts;
38  // Define defaults for global options.
39  bool subtract_mean = false;
40  BaseFloat vtln_warp = 1.0;
41  std::string vtln_map_rspecifier;
42  std::string utt2spk_rspecifier;
43  int32 channel = -1;
44  BaseFloat min_duration = 0.0;
45  std::string output_format = "kaldi";
46  std::string utt2dur_wspecifier;
47 
48  // Register the option struct.
49  fbank_opts.Register(&po);
50  // Register the options.
51  po.Register("output-format", &output_format,
52  "Format of the output files [kaldi, htk]");
53  po.Register("subtract-mean", &subtract_mean, "Subtract mean of each "
54  "feature file [CMS]; not recommended to do it this way. ");
55  po.Register("vtln-warp", &vtln_warp,
56  "Vtln warp factor (only applicable if vtln-map not specified)");
57  po.Register("vtln-map", &vtln_map_rspecifier,"Map from utterance or "
58  "speaker-id to vtln warp factor (rspecifier)");
59  po.Register("utt2spk", &utt2spk_rspecifier, "Utterance to speaker-id map "
60  "(if doing VTLN and you have warps per speaker)");
61  po.Register("channel", &channel, "Channel to extract (-1 -> expect mono, "
62  "0 -> left, 1 -> right)");
63  po.Register("min-duration", &min_duration, "Minimum duration of segments "
64  "to process (in seconds).");
65  po.Register("write-utt2dur", &utt2dur_wspecifier, "Wspecifier to write "
66  "duration of each utterance in seconds, e.g. 'ark,t:utt2dur'.");
67 
68  po.Read(argc, argv);
69 
70  if (po.NumArgs() != 2) {
71  po.PrintUsage();
72  exit(1);
73  }
74 
75  std::string wav_rspecifier = po.GetArg(1);
76 
77  std::string output_wspecifier = po.GetArg(2);
78 
79  Fbank fbank(fbank_opts);
80 
81  if (utt2spk_rspecifier != "" && vtln_map_rspecifier != "")
82  KALDI_ERR << ("The --utt2spk option is only needed if "
83  "the --vtln-map option is used.");
84  RandomAccessBaseFloatReaderMapped vtln_map_reader(vtln_map_rspecifier,
85  utt2spk_rspecifier);
86 
87  SequentialTableReader<WaveHolder> reader(wav_rspecifier);
88  BaseFloatMatrixWriter kaldi_writer; // typedef to TableWriter<something>.
90 
91  if (output_format == "kaldi") {
92  if (!kaldi_writer.Open(output_wspecifier))
93  KALDI_ERR << "Could not initialize output with wspecifier "
94  << output_wspecifier;
95  } else if (output_format == "htk") {
96  if (!htk_writer.Open(output_wspecifier))
97  KALDI_ERR << "Could not initialize output with wspecifier "
98  << output_wspecifier;
99  } else {
100  KALDI_ERR << "Invalid output_format string " << output_format;
101  }
102 
103  DoubleWriter utt2dur_writer(utt2dur_wspecifier);
104 
105  int32 num_utts = 0, num_success = 0;
106  for (; !reader.Done(); reader.Next()) {
107  num_utts++;
108  std::string utt = reader.Key();
109  const WaveData &wave_data = reader.Value();
110  if (wave_data.Duration() < min_duration) {
111  KALDI_WARN << "File: " << utt << " is too short ("
112  << wave_data.Duration() << " sec): producing no output.";
113  continue;
114  }
115  int32 num_chan = wave_data.Data().NumRows(), this_chan = channel;
116  { // This block works out the channel (0=left, 1=right...)
117  KALDI_ASSERT(num_chan > 0); // This should have been caught in
118  // reading code if no channels.
119  if (channel == -1) {
120  this_chan = 0;
121  if (num_chan != 1)
122  KALDI_WARN << "Channel not specified but you have data with "
123  << num_chan << " channels; defaulting to zero";
124  } else {
125  if (this_chan >= num_chan) {
126  KALDI_WARN << "File with id " << utt << " has "
127  << num_chan << " channels but you specified channel "
128  << channel << ", producing no output.";
129  continue;
130  }
131  }
132  }
133  BaseFloat vtln_warp_local; // Work out VTLN warp factor.
134  if (vtln_map_rspecifier != "") {
135  if (!vtln_map_reader.HasKey(utt)) {
136  KALDI_WARN << "No vtln-map entry for utterance-id (or speaker-id) "
137  << utt;
138  continue;
139  }
140  vtln_warp_local = vtln_map_reader.Value(utt);
141  } else {
142  vtln_warp_local = vtln_warp;
143  }
144 
145  SubVector<BaseFloat> waveform(wave_data.Data(), this_chan);
146  Matrix<BaseFloat> features;
147  try {
148  fbank.ComputeFeatures(waveform, wave_data.SampFreq(),
149  vtln_warp_local, &features);
150  } catch (...) {
151  KALDI_WARN << "Failed to compute features for utterance " << utt;
152  continue;
153  }
154  if (subtract_mean) {
155  Vector<BaseFloat> mean(features.NumCols());
156  mean.AddRowSumMat(1.0, features);
157  mean.Scale(1.0 / features.NumRows());
158  for (int32 i = 0; i < features.NumRows(); i++)
159  features.Row(i).AddVec(-1.0, mean);
160  }
161  if (output_format == "kaldi") {
162  kaldi_writer.Write(utt, features);
163  } else {
164  std::pair<Matrix<BaseFloat>, HtkHeader> p;
165  p.first.Resize(features.NumRows(), features.NumCols());
166  p.first.CopyFromMat(features);
167  HtkHeader header = {
168  features.NumRows(),
169  100000, // 10ms shift
170  static_cast<int16>(sizeof(float)*features.NumCols()),
171  static_cast<uint16>(007 | // FBANK
172  (fbank_opts.use_energy ? 0100 : 020000)) // energy; otherwise c0
173  };
174  p.second = header;
175  htk_writer.Write(utt, p);
176  }
177  if (utt2dur_writer.IsOpen()) {
178  utt2dur_writer.Write(utt, wave_data.Duration());
179  }
180  if (num_utts % 10 == 0)
181  KALDI_LOG << "Processed " << num_utts << " utterances";
182  KALDI_VLOG(2) << "Processed features for key " << utt;
183  num_success++;
184  }
185  KALDI_LOG << " Done " << num_success << " out of " << num_utts
186  << " utterances.";
187  return (num_success != 0 ? 0 : 1);
188  } catch(const std::exception &e) {
189  std::cerr << e.what();
190  return -1;
191  }
192 }
This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for...
Definition: chain.dox:20
bool Open(const std::string &wspecifier)
void Register(OptionsItf *opts)
Definition: feature-fbank.h:62
void AddRowSumMat(Real alpha, const MatrixBase< Real > &M, Real beta=1.0)
Does *this = alpha * (sum of rows of M) + beta * *this.
This class is for when you are reading something in random access, but it may actually be stored per-...
Definition: kaldi-table.h:432
A templated class for writing objects to an archive or script file; see The Table concept...
Definition: kaldi-table.h:368
kaldi::int32 int32
BaseFloat SampFreq() const
Definition: wave-reader.h:126
const Matrix< BaseFloat > & Data() const
Definition: wave-reader.h:124
void Write(const std::string &key, const T &value) const
float BaseFloat
Definition: kaldi-types.h:29
The class ParseOptions is for parsing command-line options; see Parsing command-line options for more...
Definition: parse-options.h:36
A templated class for reading objects sequentially from an archive or script file; see The Table conc...
Definition: kaldi-table.h:287
#define KALDI_ERR
Definition: kaldi-error.h:147
#define KALDI_WARN
Definition: kaldi-error.h:150
This class&#39;s purpose is to read in Wave files.
Definition: wave-reader.h:106
A class representing a vector.
Definition: kaldi-vector.h:406
#define KALDI_ASSERT(cond)
Definition: kaldi-error.h:185
MatrixIndexT NumRows() const
Returns number of rows (or zero for empty matrix).
Definition: kaldi-matrix.h:64
#define KALDI_VLOG(v)
Definition: kaldi-error.h:156
BaseFloat Duration() const
Definition: wave-reader.h:129
This templated class is intended for offline feature extraction, i.e.
FbankOptions contains basic options for computing filterbank features.
Definition: feature-fbank.h:41
#define KALDI_LOG
Definition: kaldi-error.h:153
void AddVec(const Real alpha, const VectorBase< OtherReal > &v)
Add vector : *this = *this + alpha * rv (with casting between floats and doubles) ...
A structure containing the HTK header.
Definition: kaldi-matrix.h:955
Represents a non-allocating general vector which can be defined as a sub-vector of higher-level vecto...
Definition: kaldi-vector.h:501