DOKK / manpages / debian 10 / mlpack-bin / mlpack_gmm_generate.1.en
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

Input GMM model to generate samples from.
Number of samples to generate.

Default help info.
Get help on a specific module or option. Default value ''.
Random seed. If 0, 'std::time(NULL)' is used. Default value 0.
Display informational messages and the full list of parameters and timers at the end of execution.
Display the version of mlpack.

Matrix to save output samples in. Default value ''.

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