Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members

UniformizeVMatrix.cc

Go to the documentation of this file.
00001 // -*- C++ -*- 00002 00003 // PLearn (A C++ Machine Learning Library) 00004 // Copyright (C) 1998 Pascal Vincent 00005 // Copyright (C) 1999-2001 Pascal Vincent, Yoshua Bengio, Rejean Ducharme and University of Montreal 00006 // Copyright (C) 2002 Pascal Vincent, Julien Keable, Xavier Saint-Mleux 00007 // 00008 // Redistribution and use in source and binary forms, with or without 00009 // modification, are permitted provided that the following conditions are met: 00010 // 00011 // 1. Redistributions of source code must retain the above copyright 00012 // notice, this list of conditions and the following disclaimer. 00013 // 00014 // 2. Redistributions in binary form must reproduce the above copyright 00015 // notice, this list of conditions and the following disclaimer in the 00016 // documentation and/or other materials provided with the distribution. 00017 // 00018 // 3. The name of the authors may not be used to endorse or promote 00019 // products derived from this software without specific prior written 00020 // permission. 00021 // 00022 // THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR 00023 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 00024 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 00025 // NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 00026 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 00027 // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00028 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00029 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00030 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00031 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00032 // 00033 // This file is part of the PLearn library. For more information on the PLearn 00034 // library, go to the PLearn Web site at www.plearn.org 00035 00036 00037 /* ******************************************************* 00038 * $Id: UniformizeVMatrix.cc,v 1.6 2004/07/09 19:42:23 tihocan Exp $ 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 } // end of namespcae PLearn

Generated on Tue Aug 17 16:09:52 2004 for PLearn by doxygen 1.3.7