Commit 78f3b0ad authored by Rahul Kavi's avatar Rahul Kavi Committed by Maksim Shabunin

removed unnecessary semicolon in LogisticRegression class documentation

parent 56d715b0
...@@ -123,7 +123,7 @@ The constructors. ...@@ -123,7 +123,7 @@ The constructors.
.. ocv:function:: LogisticRegression::LogisticRegression() .. ocv:function:: LogisticRegression::LogisticRegression()
.. ocv:function:: LogisticRegression::LogisticRegression(cv::InputArray data_ip, cv::InputArray labels_ip, const LogisticRegressionParams& params); .. ocv:function:: LogisticRegression::LogisticRegression(cv::InputArray data_ip, cv::InputArray labels_ip, const LogisticRegressionParams& params)
:param data: The data variable of type ``CV_32F``. Each data instance has to be arranged per across different rows. :param data: The data variable of type ``CV_32F``. Each data instance has to be arranged per across different rows.
...@@ -148,7 +148,7 @@ LogisticRegression::predict ...@@ -148,7 +148,7 @@ LogisticRegression::predict
--------------------------- ---------------------------
Predicts responses for input samples and returns a float type. Predicts responses for input samples and returns a float type.
.. ocv:function:: void LogisticRegression::predict( cv::InputArray data, cv::OutputArray predicted_labels ) const; .. ocv:function:: void LogisticRegression::predict( cv::InputArray data, cv::OutputArray predicted_labels ) const
:param data: The input data for the prediction algorithm. The ``data`` variable should be of type ``CV_32F``. :param data: The input data for the prediction algorithm. The ``data`` variable should be of type ``CV_32F``.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment