00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
#include "UniformizeVMatrix.h"
00042
00043
namespace PLearn {
00044
using namespace std;
00045
00046
00049
PLEARN_IMPLEMENT_OBJECT(UniformizeVMatrix,
"ONE LINE DESC",
"NO HELP");
00050
00051 UniformizeVMatrix::UniformizeVMatrix()
00052 : a(0), b(1)
00053 {
00054 }
00055
00056 UniformizeVMatrix::UniformizeVMatrix(
VMat the_distr,
Mat the_bins,
Vec the_index,
real the_a,
00057
real the_b)
00058 :
inherited(the_distr->length(), the_distr->width()),
00059 distr(the_distr), bins(the_bins), index(the_index), a(the_a), b(the_b)
00060 {
00061
build();
00062 }
00063
00064
void
00065 UniformizeVMatrix::build()
00066 {
00067 inherited::build();
00068
build_();
00069 }
00070
00071
void
00072 UniformizeVMatrix::build_()
00073 {
00074
if (
distr) {
00075 fieldinfos =
distr->getFieldInfos();
00076
00077
if (
a >=
b)
00078
PLERROR(
"In UniformizeVMatrix: a (%f) must be strictly smaller than b (%f)",
a,
b);
00079
if (
index.
length() !=
bins.
length())
00080
PLERROR(
"In UniformizeVMatrix: the number of elements in index (%d) must equal the number of rows in bins (%d)",
index.
length(),
bins.
length());
00081
if (
min(
index)<0 ||
max(
index)>
distr->
length()-1)
00082
PLERROR(
"In UniformizeVMatrix: all values of index must be in range [0,%d]",
00083
distr->
length()-1);
00084 }
00085 }
00086
00087
void
00088 UniformizeVMatrix::declareOptions(
OptionList &ol)
00089 {
00090
declareOption(ol,
"distr", &UniformizeVMatrix::distr, OptionBase::buildoption,
"");
00091
declareOption(ol,
"bins", &UniformizeVMatrix::bins, OptionBase::buildoption,
"");
00092
declareOption(ol,
"index", &UniformizeVMatrix::index, OptionBase::buildoption,
"");
00093
declareOption(ol,
"a", &UniformizeVMatrix::a, OptionBase::buildoption,
"");
00094
declareOption(ol,
"b", &UniformizeVMatrix::b, OptionBase::buildoption,
"");
00095 inherited::declareOptions(ol);
00096 }
00097
00098 void UniformizeVMatrix::getNewRow(
int i,
const Vec& v)
const
00099
{
00100
#ifdef BOUNDCHECK
00101
if(i<0 || i>=
length())
00102
PLERROR(
"In UniformizeVMatrix::getNewRow OUT OF BOUNDS");
00103
if(v.
length() !=
width())
00104
PLERROR(
"In UniformizeVMatrix::getNewRow v.length() must be equal to the VMat's width");
00105
#endif
00106
00107
distr->getRow(i, v);
00108
for(
int j=0; j<v.
length(); j++) {
00109
if (
vec_find(
index, (
real)j) != -1) {
00110
Vec x_bin =
bins(j);
00111
real xx =
estimatedCumProb(v[j], x_bin);
00112 v[j] = xx*(
b-
a) -
a;
00113 }
00114 }
00115 }
00116
00117 }