lr.cpp 18.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
///////////////////////////////////////////////////////////////////////////////////////
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.

//  By downloading, copying, installing or using the software you agree to this license.
//  If you do not agree to this license, do not download, install,
//  copy or use the software.

// This is a implementation of the Logistic Regression algorithm in C++ in OpenCV.

// AUTHOR:
// Rahul Kavi rahulkavi[at]live[at]com

// # You are free to use, change, or redistribute the code in any way you wish for
// # non-commercial purposes, but please maintain the name of the original author.
// # This code comes with no warranty of any kind.

// #
// # You are free to use, change, or redistribute the code in any way you wish for
// # non-commercial purposes, but please maintain the name of the original author.
// # This code comes with no warranty of any kind.

// # Logistic Regression ALGORITHM


//                           License Agreement
//                For Open Source Computer Vision Library

// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2008-2011, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.

// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:

//   * Redistributions of source code must retain the above copyright notice,
//     this list of conditions and the following disclaimer.

//   * Redistributions in binary form must reproduce the above copyright notice,
//     this list of conditions and the following disclaimer in the documentation
//     and/or other materials provided with the distribution.

//   * The name of the copyright holders may not be used to endorse or promote products
//     derived from this software without specific prior written permission.

// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.

#include "precomp.hpp"

using namespace std;

60 61 62
namespace cv {
namespace ml {

63
class LrParams
64
{
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
public:
    LrParams()
    {
        alpha = 0.001;
        num_iters = 1000;
        norm = LogisticRegression::REG_L2;
        train_method = LogisticRegression::BATCH;
        mini_batch_size = 1;
        term_crit = TermCriteria(TermCriteria::COUNT + TermCriteria::EPS, num_iters, alpha);
    }

    double alpha; //!< learning rate.
    int num_iters; //!< number of iterations.
    int norm;
    int train_method;
    int mini_batch_size;
    TermCriteria term_crit;
};
83

84
class LogisticRegressionImpl : public LogisticRegression
85
{
86
public:
87 88

    LogisticRegressionImpl() { }
89 90
    virtual ~LogisticRegressionImpl() {}

91 92 93 94 95 96 97
    CV_IMPL_PROPERTY(double, LearningRate, params.alpha)
    CV_IMPL_PROPERTY(int, Iterations, params.num_iters)
    CV_IMPL_PROPERTY(int, Regularization, params.norm)
    CV_IMPL_PROPERTY(int, TrainMethod, params.train_method)
    CV_IMPL_PROPERTY(int, MiniBatchSize, params.mini_batch_size)
    CV_IMPL_PROPERTY(TermCriteria, TermCriteria, params.term_crit)

98 99 100 101 102
    virtual bool train( const Ptr<TrainData>& trainData, int=0 );
    virtual float predict(InputArray samples, OutputArray results, int) const;
    virtual void clear();
    virtual void write(FileStorage& fs) const;
    virtual void read(const FileNode& fn);
103
    virtual Mat get_learnt_thetas() const;
104 105 106
    virtual int getVarCount() const { return learnt_thetas.cols; }
    virtual bool isTrained() const { return !learnt_thetas.empty(); }
    virtual bool isClassifier() const { return true; }
107
    virtual String getDefaultName() const { return "opencv_ml_lr"; }
108
protected:
109 110 111 112 113 114
    Mat calc_sigmoid(const Mat& data) const;
    double compute_cost(const Mat& _data, const Mat& _labels, const Mat& _init_theta);
    Mat compute_batch_gradient(const Mat& _data, const Mat& _labels, const Mat& _init_theta);
    Mat compute_mini_batch_gradient(const Mat& _data, const Mat& _labels, const Mat& _init_theta);
    bool set_label_map(const Mat& _labels_i);
    Mat remap_labels(const Mat& _labels_i, const map<int, int>& lmap) const;
115
protected:
116
    LrParams params;
117
    Mat learnt_thetas;
118 119
    map<int, int> forward_mapper;
    map<int, int> reverse_mapper;
120 121
    Mat labels_o;
    Mat labels_n;
122 123
};

124
Ptr<LogisticRegression> LogisticRegression::create()
125
{
126
    return makePtr<LogisticRegressionImpl>();
127 128
}

129
bool LogisticRegressionImpl::train(const Ptr<TrainData>& trainData, int)
130
{
131
    clear();
132 133
    Mat _data_i = trainData->getSamples();
    Mat _labels_i = trainData->getResponses();
134

135
    CV_Assert( !_labels_i.empty() && !_data_i.empty());
136

137
    // check the number of columns
138 139
    if(_labels_i.cols != 1)
    {
140
        CV_Error( CV_StsBadArg, "_labels_i should be a column matrix" );
141
    }
142

143 144 145 146 147
    // check data type.
    // data should be of floating type CV_32FC1

    if((_data_i.type() != CV_32FC1) || (_labels_i.type() != CV_32FC1))
    {
148
        CV_Error( CV_StsBadArg, "data and labels must be a floating point matrix" );
149 150 151 152
    }

    bool ok = false;

153
    Mat labels;
154 155

    set_label_map(_labels_i);
156
    int num_classes = (int) this->forward_mapper.size();
157 158

    // add a column of ones
159 160
    Mat data_t = Mat::zeros(_data_i.rows, _data_i.cols+1, CV_32F);
    vconcat(Mat(_data_i.rows, 1, _data_i.type(), Scalar::all(1.0)), data_t.col(0));
161

162 163 164 165 166 167 168
    for (int i=1;i<data_t.cols;i++)
    {
        vconcat(_data_i.col(i-1), data_t.col(i));
    }

    if(num_classes < 2)
    {
169
        CV_Error( CV_StsBadArg, "data should have atleast 2 classes" );
170 171 172 173
    }

    if(_labels_i.rows != _data_i.rows)
    {
174
        CV_Error( CV_StsBadArg, "number of rows in data and labels should be the equal" );
175 176 177
    }


178 179
    Mat thetas = Mat::zeros(num_classes, data_t.cols, CV_32F);
    Mat init_theta = Mat::zeros(data_t.cols, 1, CV_32F);
180

181 182
    Mat labels_l = remap_labels(_labels_i, this->forward_mapper);
    Mat new_local_labels;
183 184

    int ii=0;
185
    Mat new_theta;
186 187 188 189

    if(num_classes == 2)
    {
        labels_l.convertTo(labels, CV_32F);
190 191 192 193
        if(this->params.train_method == LogisticRegression::BATCH)
            new_theta = compute_batch_gradient(data_t, labels, init_theta);
        else
            new_theta = compute_mini_batch_gradient(data_t, labels, init_theta);
194 195 196 197 198 199 200 201 202 203 204 205
        thetas = new_theta.t();
    }
    else
    {
        /* take each class and rename classes you will get a theta per class
        as in multi class class scenario, we will have n thetas for n classes */
        ii = 0;

        for(map<int,int>::iterator it = this->forward_mapper.begin(); it != this->forward_mapper.end(); ++it)
        {
            new_local_labels = (labels_l == it->second)/255;
            new_local_labels.convertTo(labels, CV_32F);
206 207 208 209
            if(this->params.train_method == LogisticRegression::BATCH)
                new_theta = compute_batch_gradient(data_t, labels, init_theta);
            else
                new_theta = compute_mini_batch_gradient(data_t, labels, init_theta);
210 211 212 213 214 215
            hconcat(new_theta.t(), thetas.row(ii));
            ii += 1;
        }
    }

    this->learnt_thetas = thetas.clone();
216
    if( cvIsNaN( (double)sum(this->learnt_thetas)[0] ) )
217
    {
218
        CV_Error( CV_StsBadArg, "check training parameters. Invalid training classifier" );
219 220 221 222 223
    }
    ok = true;
    return ok;
}

224
float LogisticRegressionImpl::predict(InputArray samples, OutputArray results, int) const
225 226 227
{
    /* returns a class of the predicted class
    class names can be 1,2,3,4, .... etc */
228
    Mat thetas, data, pred_labs;
229
    data = samples.getMat();
230 231 232 233

    // check if learnt_mats array is populated
    if(this->learnt_thetas.total()<=0)
    {
234
        CV_Error( CV_StsBadArg, "classifier should be trained first" );
235
    }
236
    if(data.type() != CV_32F)
237
    {
238
        CV_Error( CV_StsBadArg, "data must be of floating type" );
239 240 241
    }

    // add a column of ones
242
    Mat data_t = Mat::zeros(data.rows, data.cols+1, CV_32F);
243 244 245 246
    for (int i=0;i<data_t.cols;i++)
    {
        if(i==0)
        {
247
            vconcat(Mat(data.rows, 1, data.type(), Scalar::all(1.0)), data_t.col(i));
248 249
            continue;
        }
250
        vconcat(data.col(i-1), data_t.col(i));
251 252 253 254 255 256 257 258 259 260 261 262
    }

    this->learnt_thetas.convertTo(thetas, CV_32F);

    CV_Assert(thetas.rows > 0);

    double min_val;
    double max_val;

    Point min_loc;
    Point max_loc;

263 264 265 266
    Mat labels;
    Mat labels_c;
    Mat temp_pred;
    Mat pred_m = Mat::zeros(data_t.rows, thetas.rows, data.type());
267 268 269 270 271

    if(thetas.rows == 1)
    {
        temp_pred = calc_sigmoid(data_t*thetas.t());
        CV_Assert(temp_pred.cols==1);
272

273 274 275 276 277 278 279 280 281
        // if greater than 0.5, predict class 0 or predict class 1
        temp_pred = (temp_pred>0.5)/255;
        temp_pred.convertTo(labels_c, CV_32S);
    }
    else
    {
        for(int i = 0;i<thetas.rows;i++)
        {
            temp_pred = calc_sigmoid(data_t * thetas.row(i).t());
282
            vconcat(temp_pred, pred_m.col(i));
283 284 285 286 287 288 289 290 291
        }
        for(int i = 0;i<pred_m.rows;i++)
        {
            temp_pred = pred_m.row(i);
            minMaxLoc( temp_pred, &min_val, &max_val, &min_loc, &max_loc, Mat() );
            labels.push_back(max_loc.x);
        }
        labels.convertTo(labels_c, CV_32S);
    }
292 293 294
    pred_labs = remap_labels(labels_c, this->reverse_mapper);
    // convert pred_labs to integer type
    pred_labs.convertTo(pred_labs, CV_32S);
295 296 297
    pred_labs.copyTo(results);
    // TODO: determine
    return 0;
298 299
}

300
Mat LogisticRegressionImpl::calc_sigmoid(const Mat& data) const
301
{
302 303
    Mat dest;
    exp(-data, dest);
304 305 306
    return 1.0/(1.0+dest);
}

307
double LogisticRegressionImpl::compute_cost(const Mat& _data, const Mat& _labels, const Mat& _init_theta)
308 309 310 311 312 313
{
    int llambda = 0;
    int m;
    int n;
    double cost = 0;
    double rparameter = 0;
314 315 316 317
    Mat theta_b;
    Mat theta_c;
    Mat d_a;
    Mat d_b;
318 319 320 321 322

    m = _data.rows;
    n = _data.cols;

    theta_b = _init_theta(Range(1, n), Range::all());
323
    multiply(theta_b, theta_b, theta_c, 1);
324

ippei ito's avatar
ippei ito committed
325
    if (params.norm != REG_DISABLE)
326 327 328 329
    {
        llambda = 1;
    }

330
    if(this->params.norm == LogisticRegression::REG_L1)
331
    {
332
        rparameter = (llambda/(2*m)) * sum(theta_b)[0];
333 334 335 336
    }
    else
    {
        // assuming it to be L2 by default
337
        rparameter = (llambda/(2*m)) * sum(theta_c)[0];
338 339
    }

340
    d_a = calc_sigmoid(_data* _init_theta);
341 342


343 344
    log(d_a, d_a);
    multiply(d_a, _labels, d_a);
345

346
    d_b = 1 - calc_sigmoid(_data * _init_theta);
347 348
    log(d_b, d_b);
    multiply(d_b, 1-_labels, d_b);
349

350
    cost = (-1.0/m) * (sum(d_a)[0] + sum(d_b)[0]);
351 352 353 354 355
    cost = cost + rparameter;

    return cost;
}

356
Mat LogisticRegressionImpl::compute_batch_gradient(const Mat& _data, const Mat& _labels, const Mat& _init_theta)
357 358 359 360
{
    // implements batch gradient descent
    if(this->params.alpha<=0)
    {
361
        CV_Error( CV_StsBadArg, "check training parameters for the classifier" );
362 363 364 365
    }

    if(this->params.num_iters <= 0)
    {
366
        CV_Error( CV_StsBadArg, "number of iterations cannot be zero or a negative number" );
367 368 369 370 371
    }

    int llambda = 0;
    double ccost;
    int m, n;
372 373 374 375 376
    Mat pcal_a;
    Mat pcal_b;
    Mat pcal_ab;
    Mat gradient;
    Mat theta_p = _init_theta.clone();
377 378 379
    m = _data.rows;
    n = _data.cols;

ippei ito's avatar
ippei ito committed
380
    if (params.norm != REG_DISABLE)
381 382 383 384 385 386 387 388 389 390
    {
        llambda = 1;
    }

    for(int i = 0;i<this->params.num_iters;i++)
    {
        ccost = compute_cost(_data, _labels, theta_p);

        if( cvIsNaN( ccost ) )
        {
391
            CV_Error( CV_StsBadArg, "check training parameters. Invalid training classifier" );
392 393 394 395 396 397 398 399 400 401 402 403
        }

        pcal_b = calc_sigmoid((_data*theta_p) - _labels);

        pcal_a = (static_cast<double>(1/m)) * _data.t();

        gradient = pcal_a * pcal_b;

        pcal_a = calc_sigmoid(_data*theta_p) - _labels;

        pcal_b = _data(Range::all(), Range(0,1));

404
        multiply(pcal_a, pcal_b, pcal_ab, 1);
405 406 407 408 409 410 411 412 413 414

        gradient.row(0) = ((float)1/m) * sum(pcal_ab)[0];

        pcal_b = _data(Range::all(), Range(1,n));

        //cout<<"for each training data entry"<<endl;
        for(int ii = 1;ii<gradient.rows;ii++)
        {
            pcal_b = _data(Range::all(), Range(ii,ii+1));

415
            multiply(pcal_a, pcal_b, pcal_ab, 1);
416

417
            gradient.row(ii) = (1.0/m)*sum(pcal_ab)[0] + (llambda/m) * theta_p.row(ii);
418 419 420 421 422 423 424
        }

        theta_p = theta_p - ( static_cast<double>(this->params.alpha)/m)*gradient;
    }
    return theta_p;
}

425
Mat LogisticRegressionImpl::compute_mini_batch_gradient(const Mat& _data, const Mat& _labels, const Mat& _init_theta)
426 427 428 429 430 431
{
    // implements batch gradient descent
    int lambda_l = 0;
    double ccost;
    int m, n;
    int j = 0;
432
    int size_b = this->params.mini_batch_size;
433

434
    if(this->params.mini_batch_size <= 0 || this->params.alpha == 0)
435
    {
436
        CV_Error( CV_StsBadArg, "check training parameters for the classifier" );
437 438 439 440
    }

    if(this->params.num_iters <= 0)
    {
441
        CV_Error( CV_StsBadArg, "number of iterations cannot be zero or a negative number" );
442 443
    }

444 445 446 447 448 449 450
    Mat pcal_a;
    Mat pcal_b;
    Mat pcal_ab;
    Mat gradient;
    Mat theta_p = _init_theta.clone();
    Mat data_d;
    Mat labels_l;
451

ippei ito's avatar
ippei ito committed
452
    if (params.norm != REG_DISABLE)
453 454 455 456
    {
        lambda_l = 1;
    }

457
    for(int i = 0;i<this->params.term_crit.maxCount;i++)
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
    {
        if(j+size_b<=_data.rows)
        {
            data_d = _data(Range(j,j+size_b), Range::all());
            labels_l = _labels(Range(j,j+size_b),Range::all());
        }
        else
        {
            data_d = _data(Range(j, _data.rows), Range::all());
            labels_l = _labels(Range(j, _labels.rows),Range::all());
        }

        m = data_d.rows;
        n = data_d.cols;

        ccost = compute_cost(data_d, labels_l, theta_p);

        if( cvIsNaN( ccost ) == 1)
        {
477
            CV_Error( CV_StsBadArg, "check training parameters. Invalid training classifier" );
478 479 480 481 482 483 484 485 486 487 488 489
        }

        pcal_b = calc_sigmoid((data_d*theta_p) - labels_l);

        pcal_a = (static_cast<double>(1/m)) * data_d.t();

        gradient = pcal_a * pcal_b;

        pcal_a = calc_sigmoid(data_d*theta_p) - labels_l;

        pcal_b = data_d(Range::all(), Range(0,1));

490
        multiply(pcal_a, pcal_b, pcal_ab, 1);
491 492 493 494 495 496 497 498

        gradient.row(0) = ((float)1/m) * sum(pcal_ab)[0];

        pcal_b = data_d(Range::all(), Range(1,n));

        for(int k = 1;k<gradient.rows;k++)
        {
            pcal_b = data_d(Range::all(), Range(k,k+1));
499 500
            multiply(pcal_a, pcal_b, pcal_ab, 1);
            gradient.row(k) = (1.0/m)*sum(pcal_ab)[0] + (lambda_l/m) * theta_p.row(k);
501 502 503 504
        }

        theta_p = theta_p - ( static_cast<double>(this->params.alpha)/m)*gradient;

505
        j+=this->params.mini_batch_size;
506 507 508 509 510 511 512 513 514 515

        if(j+size_b>_data.rows)
        {
            // if parsed through all data variables
            break;
        }
    }
    return theta_p;
}

516
bool LogisticRegressionImpl::set_label_map(const Mat &_labels_i)
517
{
518
    // this function creates two maps to map user defined labels to program friendly labels two ways.
519
    int ii = 0;
520
    Mat labels;
521

522 523
    this->labels_o = Mat(0,1, CV_8U);
    this->labels_n = Mat(0,1, CV_8U);
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544

    _labels_i.convertTo(labels, CV_32S);

    for(int i = 0;i<labels.rows;i++)
    {
        this->forward_mapper[labels.at<int>(i)] += 1;
    }

    for(map<int,int>::iterator it = this->forward_mapper.begin(); it != this->forward_mapper.end(); ++it)
    {
        this->forward_mapper[it->first] = ii;
        this->labels_o.push_back(it->first);
        this->labels_n.push_back(ii);
        ii += 1;
    }

    for(map<int,int>::iterator it = this->forward_mapper.begin(); it != this->forward_mapper.end(); ++it)
    {
        this->reverse_mapper[it->second] = it->first;
    }

545
    return true;
546 547
}

548
Mat LogisticRegressionImpl::remap_labels(const Mat& _labels_i, const map<int, int>& lmap) const
549
{
550
    Mat labels;
551 552
    _labels_i.convertTo(labels, CV_32S);

553
    Mat new_labels = Mat::zeros(labels.rows, labels.cols, labels.type());
554

555
    CV_Assert( !lmap.empty() );
556 557 558

    for(int i =0;i<labels.rows;i++)
    {
559
        new_labels.at<int>(i,0) = lmap.find(labels.at<int>(i,0))->second;
560 561 562 563
    }
    return new_labels;
}

564
void LogisticRegressionImpl::clear()
565 566 567 568 569 570
{
    this->learnt_thetas.release();
    this->labels_o.release();
    this->labels_n.release();
}

571
void LogisticRegressionImpl::write(FileStorage& fs) const
572
{
573 574 575 576 577
    // check if open
    if(fs.isOpened() == 0)
    {
        CV_Error(CV_StsBadArg,"file can't open. Check file path");
    }
578 579 580 581 582 583 584 585 586 587 588 589 590 591
    string desc = "Logisitic Regression Classifier";
    fs<<"classifier"<<desc.c_str();
    fs<<"alpha"<<this->params.alpha;
    fs<<"iterations"<<this->params.num_iters;
    fs<<"norm"<<this->params.norm;
    fs<<"train_method"<<this->params.train_method;
    if(this->params.train_method == LogisticRegression::MINI_BATCH)
    {
        fs<<"mini_batch_size"<<this->params.mini_batch_size;
    }
    fs<<"learnt_thetas"<<this->learnt_thetas;
    fs<<"n_labels"<<this->labels_n;
    fs<<"o_labels"<<this->labels_o;
}
592

593
void LogisticRegressionImpl::read(const FileNode& fn)
594 595 596
{
    // check if empty
    if(fn.empty())
597
    {
598
        CV_Error( CV_StsBadArg, "empty FileNode object" );
599 600
    }

601 602 603 604 605 606 607 608 609
    this->params.alpha = (double)fn["alpha"];
    this->params.num_iters = (int)fn["iterations"];
    this->params.norm = (int)fn["norm"];
    this->params.train_method = (int)fn["train_method"];

    if(this->params.train_method == LogisticRegression::MINI_BATCH)
    {
        this->params.mini_batch_size = (int)fn["mini_batch_size"];
    }
610

611 612 613
    fn["learnt_thetas"] >> this->learnt_thetas;
    fn["o_labels"] >> this->labels_o;
    fn["n_labels"] >> this->labels_n;
614 615 616 617 618 619 620 621

    for(int ii =0;ii<labels_o.rows;ii++)
    {
        this->forward_mapper[labels_o.at<int>(ii,0)] = labels_n.at<int>(ii,0);
        this->reverse_mapper[labels_n.at<int>(ii,0)] = labels_o.at<int>(ii,0);
    }
}

622
Mat LogisticRegressionImpl::get_learnt_thetas() const
623 624 625
{
    return this->learnt_thetas;
}
626 627 628 629

}
}

630
/* End of file. */