updated mini_batch_size description for LogisticRegressionParams in documentation

This commit is contained in:
Rahul Kavi 2013-11-07 05:15:56 -05:00 committed by Maksim Shabunin
parent e4ef0e0ca8
commit 3622de2621

View File

@ -110,8 +110,7 @@ The constructors.
:param: reg: To enable or disable regularization. Set to positive integer (greater than zero) to enable and to 0 to disable. :param: reg: To enable or disable regularization. Set to positive integer (greater than zero) to enable and to 0 to disable.
:param: mini_batch_size: Specifies the number of training samples taken in each step of Mini-Batch Gradient Descent. Will only be used if using ``LogisticRegression::MINI_BATCH`` training algorithm. :param: mini_batch_size: Specifies the number of training samples taken in each step of Mini-Batch Gradient Descent. Will only be used if using ``LogisticRegression::MINI_BATCH`` training algorithm. It has to take values less than the total number of training samples.
The full constructor initializes corresponding members. The default constructor creates an object with dummy parameters. The full constructor initializes corresponding members. The default constructor creates an object with dummy parameters.