Scroll to navigation

mlpack_gmm_generate(1) User Commands mlpack_gmm_generate(1)

NAME

mlpack_gmm_generate - gmm sample generator

SYNOPSIS


mlpack_gmm_generate -m unknown -n int [-s int] [-V bool] [-o string] [-h -v]

DESCRIPTION

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':

$ mlpack_gmm_generate --input_model_file gmm.bin --samples 100 --output_file samples.csv

REQUIRED INPUT OPTIONS

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

OPTIONAL INPUT OPTIONS

Default help info.
Print help on a specific 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.

OPTIONAL OUTPUT OPTIONS

Matrix to save output samples in.

ADDITIONAL INFORMATION

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.

12 December 2020 mlpack-3.4.2