mlpack_gmm_generate(1) | User Commands | mlpack_gmm_generate(1) |
mlpack_gmm_generate - gmm sample generator
mlpack_gmm_generate -m unknown -n int [-s int] [-V bool] [-o string] [-h -v]
This program is able to generate samples from a pre-trained GMM (use gmm_train to train a GMM). The pre-trained GMM must be specified with the ’--input_model_file (-m)' parameter. The number of samples to generate is specified by the '--samples (-n)' parameter. Output samples may be saved with the '--output_file (-o)' output parameter.
The following command can be used to generate 100 samples from the pre-trained GMM 'gmm.bin' and store those generated samples in 'samples.csv':
$ gmm_generate --input_model_file gmm.bin --samples 100 --output_file samples.csv
For further information, including relevant papers, citations, and theory, consult the documentation found at http://www.mlpack.org or included with your distribution of mlpack.
18 November 2018 | mlpack-3.0.4 |