From 365941ba14dd10f05abf46cb5d6c2825968f6ce5 Mon Sep 17 00:00:00 2001 From: Atul Kaushik Date: Mon, 3 Dec 2018 00:46:24 +0530 Subject: [PATCH] Fixed aLgorithm for algorithm --- .../logistic_regression/logistic_regression_main.cpp | 8 ++++---- src/mlpack/methods/radical/radical_main.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/mlpack/methods/logistic_regression/logistic_regression_main.cpp b/src/mlpack/methods/logistic_regression/logistic_regression_main.cpp index 2a0ed23a7b..90cb3e978e 100644 --- a/src/mlpack/methods/logistic_regression/logistic_regression_main.cpp +++ b/src/mlpack/methods/logistic_regression/logistic_regression_main.cpp @@ -57,10 +57,10 @@ PROGRAM_INFO("L2-regularized Logistic Regression and Prediction", PRINT_PARAM_STRING("max_iterations") + " parameter specifies the maximum " "number of allowed iterations, and the " + PRINT_PARAM_STRING("tolerance") + " parameter specifies the tolerance for " - " convergence. For the SGD optimizer, the " + - PRINT_PARAM_STRING("step_size") + " parameter controls the step size taken" - " at each iteration by the optimizer. The batch size for SGD is controlled" - " with the " + PRINT_PARAM_STRING("batch_size") + " parameter. If the " + "convergence. For the SGD optimizer, the " + + PRINT_PARAM_STRING("step_size") + " parameter controls the step size taken " + "at each iteration by the optimizer. The batch size for SGD is controlled " + "with the " + PRINT_PARAM_STRING("batch_size") + " parameter. If the " "objective function for your data is oscillating between Inf and 0, the " "step size is probably too large. There are more parameters for the " "optimizers, but the C++ interface must be used to access these." diff --git a/src/mlpack/methods/radical/radical_main.cpp b/src/mlpack/methods/radical/radical_main.cpp index 775a301891..a68d4f47c8 100644 --- a/src/mlpack/methods/radical/radical_main.cpp +++ b/src/mlpack/methods/radical/radical_main.cpp @@ -3,7 +3,7 @@ * @author Nishant Mehta * * Executable for RADICAL. RADICAL is Robust, Accurate, Direct ICA - * algorithm. + * aLgorithm. * * mlpack is free software; you may redistribute it and/or modify it under the * terms of the 3-clause BSD license. You should have received a copy of the