File: interfaceGPClassifier.cpp

package info (click to toggle)
mldemos 0.5.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 32,224 kB
  • ctags: 46,525
  • sloc: cpp: 306,887; ansic: 167,718; ml: 126; sh: 109; makefile: 2
file content (220 lines) | stat: -rw-r--r-- 7,247 bytes parent folder | download | duplicates (2)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/*********************************************************************
MLDemos: A User-Friendly visualization toolkit for machine learning
Copyright (C) 2010  Basilio Noris
Contact: mldemos@b4silio.com

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License,
version 3 as published by the Free Software Foundation.

This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*********************************************************************/
#include "interfaceGPClassifier.h"
#include "drawUtils.h"
#include <basicMath.h>
#include <QPixmap>
#include <QBitmap>
#include <QPainter>
#include <QDebug>

using namespace std;

ClassGP::ClassGP()
{
    // we initialize the hyperparameter widget
    params = new Ui::ParametersGP();
    params->setupUi(widget = new QWidget());
}

ClassGP::~ClassGP()
{
    delete params;
}

void ClassGP::SetParams(Classifier *classifier)
{
    if(!classifier) return;
    // the dynamic cast ensures that the pointer we received is really a classifierGP
    ClassifierGP * myGP = dynamic_cast<ClassifierGP *>(classifier);
    // if it isnt, we return
    if(!myGP) return;

    // here we gather the different hyperparameters from the interface

    double lengthscale = 1.f/params->lengthscale->value();
    lengthscale  = lengthscale*lengthscale;
    int Method = params->evalmethod->currentIndex();
    int Nsamp = params->Nsamp->value();

    // and finally we set the parameters of the algorithm
    myGP->SetParams(lengthscale,Method,Nsamp);
}

fvec ClassGP::GetParams()
{
    double lengthscale = 1.f/params->lengthscale->value();
    lengthscale  = lengthscale*lengthscale;
    int Method = params->evalmethod->currentIndex();
    int Nsamp = params->Nsamp->value();

    fvec par(3);
    par[0] = lengthscale;
    par[1] = Method;
    par[2] = Nsamp;
    return par;
}

void ClassGP::SetParams(Classifier *classifier, fvec parameters)
{
    if(!classifier) return;
    ClassifierGP * myGP = dynamic_cast<ClassifierGP *>(classifier);
    if(!myGP) return;

    int i = 0;
    double lengthscale = parameters.size() > i ? parameters[i] : 0; i++;
    int Method = parameters.size() > i ? parameters[i] : 0; i++;
    int Nsamp = parameters.size() > i ? parameters[i] : 0; i++;

    myGP->SetParams(lengthscale,Method,Nsamp);
}

void ClassGP::GetParameterList(std::vector<QString> &parameterNames,
                             std::vector<QString> &parameterTypes,
                             std::vector< std::vector<QString> > &parameterValues)
{
    parameterNames.clear();
    parameterTypes.clear();
    parameterValues.clear();
    parameterNames.push_back("Length Scale");
    parameterNames.push_back("Evaluation Method");
    parameterNames.push_back("Sampling Count");
    parameterTypes.push_back("Real");
    parameterTypes.push_back("List");
    parameterTypes.push_back("Integer");
    parameterValues.push_back(vector<QString>());
    parameterValues.back().push_back("0.00000001f");
    parameterValues.back().push_back("99999999999");
    parameterValues.push_back(vector<QString>());
    parameterValues.back().push_back("Numerical");
    parameterValues.back().push_back("Monte Carlo");
    parameterValues.push_back(vector<QString>());
    parameterValues.back().push_back("1");
    parameterValues.back().push_back("9999");
}

QString ClassGP::GetAlgoString()
{
    // here we gather the different hyperparameters from the interface

    int param2 = params->evalmethod->currentIndex();
    double lengthscale  =params->lengthscale->value();




    // and we generate the algorithm string with something that is understandable
    QString algo = QString("GP classifier");
    switch(param2)
    {
    case 0:
        algo += " Numerical Integration.";
        break;
    case 1:
        algo += "MonteCarlo.";
        break;

    }
    algo+=" lengthscale: ";
    algo+=QString("%1").arg(lengthscale);

    return algo;
}

Classifier *ClassGP::GetClassifier()
{
    // we instanciate the algorithm object
    ClassifierGP *classifier = new ClassifierGP();
    // we set its parameters
    SetParams(classifier);
    // we return it to the main program
    return classifier;
}

void ClassGP::DrawInfo(Canvas *canvas, QPainter &painter, Classifier *classifier)
{
    if(!canvas || !classifier) return;
    painter.setRenderHint(QPainter::Antialiasing);

    ClassifierGP * myGP = dynamic_cast<ClassifierGP*>(classifier);
    if(!myGP) return;

    // to give an GP, we use the QPainter interface to paint a circle close to the center of the data space


    // first we need to know which 2 dimensions are currently being displayed (in case of multi-dimensional data)
    // if the data is 2-dimensional it will be 0 and 1
    int xIndex = canvas->xIndex;
    int yIndex = canvas->yIndex;

    // now we get the current position of the center of the dataspace
    fvec sample = canvas->center;

    // and we add a random noise around it
    sample[xIndex] += (drand48()-0.5f)*0.1;
    sample[yIndex] += (drand48()-0.5f)*0.1;

    // we need to convert the sample coordinates from dataspace (N-dimensional in R) to the canvas coordinates (2D pixel by pixel)
    QPointF pointInCanvas = canvas->toCanvasCoords(sample);

    // we make the painter paint nicely (work well with forms, not so much with text)
    painter.setRenderHint(QPainter::Antialiasing);

    // we set the brush and pen, in our case no brush (hollow circle) and a thick red edge
    painter.setBrush(Qt::NoBrush);
    painter.setPen(QPen(Qt::red, 4));

    // and we finally draw it with a radius of 10
    painter.drawEllipse(pointInCanvas, 10, 10);

}

void ClassGP::SaveOptions(QSettings &settings)
{
    // we save to the system registry each parameter value
    settings.setValue("Param1", params->lengthscale->value());
    settings.setValue("Param2", params->evalmethod->currentIndex());

}

bool ClassGP::LoadOptions(QSettings &settings)
{
    // we load the parameters from the registry so that when we launch the program we keep all values
    if(settings.contains("Param1")) params->lengthscale->setValue(settings.value("Param1").toFloat());
    if(settings.contains("Param2")) params->evalmethod->setCurrentIndex(settings.value("Param2").toInt());

    return true;
}

void ClassGP::SaveParams(QTextStream &file)
{
    // same as above but for files/string saving
    file << "classificationOptions" << ":" << "Param1" << " " << params->lengthscale->value() << "\n";
    file << "classificationOptions" << ":" << "Param2" << " " << params->evalmethod->currentIndex() << "\n";

}

bool ClassGP::LoadParams(QString name, float value)
{
    // same as above but for files/string saving
    if(name.endsWith("Param1")) params->lengthscale->setValue((int)value);
    if(name.endsWith("Param2")) params->evalmethod->setCurrentIndex((int)value);

    return true;
}