From 9d882d9461a656dfec814b0ec7ae32bd4aebf8b2 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Mon, 16 Nov 2015 06:57:55 -0800 Subject: [PATCH] Remove extra space. --- src/mlpack/methods/hmm/hmm_train_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlpack/methods/hmm/hmm_train_main.cpp b/src/mlpack/methods/hmm/hmm_train_main.cpp index 87d5c04078..20060c3b7c 100644 --- a/src/mlpack/methods/hmm/hmm_train_main.cpp +++ b/src/mlpack/methods/hmm/hmm_train_main.cpp @@ -35,7 +35,7 @@ PARAM_STRING_REQ("type", "Type of HMM: discrete | gaussian | gmm.", "t"); PARAM_FLAG("batch", "If true, input_file (and if passed, labels_file) are " "expected to contain a list of files to use as input observation sequences " - " (and label sequences).", "b"); + "(and label sequences).", "b"); PARAM_INT("states", "Number of hidden states in HMM (necessary, unless " "model_file is specified.", "n", 0); PARAM_INT("gaussians", "Number of gaussians in each GMM (necessary when type is"