29 using namespace kaldi;
32 typedef kaldi::int64 int64;
35 "Train the neural network parameters with a discriminative objective\n" 36 "function (MMI, SMBR or MPFE). This uses training examples prepared with\n" 37 "nnet-get-egs-discriminative\n" 38 "This version uses multiple threads (but no GPU)" 40 "Usage: nnet-train-discriminative-parallel [options] <model-in> <training-examples-in> <model-out>\n" 42 "nnet-train-discriminative-parallel --num-threads=8 1.nnet ark:1.degs 2.nnet\n";
44 bool binary_write =
true;
45 std::string use_gpu =
"yes";
46 int32 num_threads = 1;
50 po.Register(
"binary", &binary_write,
"Write output in binary mode");
51 po.Register(
"num-threads", &num_threads,
"Number of threads to use");
56 if (po.NumArgs() != 3) {
61 std::string nnet_rxfilename = po.GetArg(1),
62 examples_rspecifier = po.GetArg(2),
63 nnet_wxfilename = po.GetArg(3);
69 Input ki(nnet_rxfilename, &binary_read);
70 trans_model.
Read(ki.Stream(), binary_read);
71 am_nnet.
Read(ki.Stream(), binary_read);
80 update_opts, num_threads, &example_reader,
83 Output ko(nnet_wxfilename, binary_write);
84 trans_model.
Write(ko.Stream(), binary_write);
85 am_nnet.
Write(ko.Stream(), binary_write);
88 return (stats.
tot_t == 0 ? 1 : 0);
89 }
catch(
const std::exception &e) {
90 std::cerr << e.what() <<
'\n';
This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for...
void Read(std::istream &is, bool binary)
void Register(OptionsItf *opts)
The class ParseOptions is for parsing command-line options; see Parsing command-line options for more...
void Read(std::istream &is, bool binary)
void Write(std::ostream &os, bool binary) const
A templated class for reading objects sequentially from an archive or script file; see The Table conc...
void Write(std::ostream &os, bool binary) const
void NnetDiscriminativeUpdateParallel(const AmNnet &am_nnet, const TransitionModel &tmodel, const NnetDiscriminativeUpdateOptions &opts, int32 num_threads, SequentialDiscriminativeNnetExampleReader *example_reader, Nnet *nnet_to_update, NnetDiscriminativeStats *stats)
const Nnet & GetNnet() const