Fixed aLgorithm for algorithm

This commit is contained in:
Atul Kaushik
2018-12-03 00:46:24 +05:30
parent 31be043a2d
commit 365941ba14
2 changed files with 5 additions and 5 deletions
@@ -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."
+1 -1
View File
@@ -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