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

SubInputVMatrix.cc

Go to the documentation of this file.
00001 // -*- C++ -*- 00002 00003 // SubInputVMatrix.cc 00004 // 00005 // Copyright (C) 2004 Olivier Delalleau 00006 // 00007 // Redistribution and use in source and binary forms, with or without 00008 // modification, are permitted provided that the following conditions are met: 00009 // 00010 // 1. Redistributions of source code must retain the above copyright 00011 // notice, this list of conditions and the following disclaimer. 00012 // 00013 // 2. Redistributions in binary form must reproduce the above copyright 00014 // notice, this list of conditions and the following disclaimer in the 00015 // documentation and/or other materials provided with the distribution. 00016 // 00017 // 3. The name of the authors may not be used to endorse or promote 00018 // products derived from this software without specific prior written 00019 // permission. 00020 // 00021 // THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR 00022 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 00023 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 00024 // NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 00025 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 00026 // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00027 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00028 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00029 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00030 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00031 // 00032 // This file is part of the PLearn library. For more information on the PLearn 00033 // library, go to the PLearn Web site at www.plearn.org 00034 00035 /* ******************************************************* 00036 * $Id: SubInputVMatrix.cc,v 1.4 2004/07/07 17:30:48 tihocan Exp $ 00037 ******************************************************* */ 00038 00039 // Authors: Olivier Delalleau 00040 00043 #include "SubInputVMatrix.h" 00044 00045 namespace PLearn { 00046 using namespace std; 00047 00049 // SubInputVMatrix // 00051 SubInputVMatrix::SubInputVMatrix() 00052 : inherited(), 00053 j_start(0), 00054 n_inputs(-1) 00055 { 00056 } 00057 00058 PLEARN_IMPLEMENT_OBJECT(SubInputVMatrix, 00059 "A VMat that only takes part of the input of its source VMat.", 00060 "This can be useful for instance to only take the first k components\n" 00061 "after applying some dimensionality reduction method." 00062 ); 00063 00065 // declareOptions // 00067 void SubInputVMatrix::declareOptions(OptionList& ol) 00068 { 00069 declareOption(ol, "j_start", &SubInputVMatrix::j_start, OptionBase::buildoption, 00070 "The column we start at."); 00071 00072 declareOption(ol, "n_inputs", &SubInputVMatrix::n_inputs, OptionBase::buildoption, 00073 "The number of inputs to keep (-1 means we keep them all, from j_start)."); 00074 00075 // Now call the parent class' declareOptions 00076 inherited::declareOptions(ol); 00077 } 00078 00080 // build // 00082 void SubInputVMatrix::build() 00083 { 00084 inherited::build(); 00085 build_(); 00086 } 00087 00089 // build_ // 00091 void SubInputVMatrix::build_() 00092 { 00093 if (source) { 00094 if (n_inputs == -1) { 00095 // Default value: we keep all inputs. 00096 n_inputs = source->inputsize() - j_start; 00097 } 00098 if (n_inputs < 0 || n_inputs + j_start > source->inputsize()) { 00099 PLERROR("In SubInputVMatrix::build_ - Source VMatrix hasn't enough inputs"); 00100 } 00101 int n_removed = source->inputsize() - n_inputs; 00102 inputsize_ = n_inputs; 00103 width_ = source->width() - n_removed; 00104 setMetaInfoFromSource(); 00105 // TODO fieldnames and such probably won't be set properly. 00106 } 00107 } 00108 00110 // getNewRow // 00112 void SubInputVMatrix::getNewRow(int i, const Vec& v) const 00113 { 00114 // First fill the input part. 00115 source->getSubRow(i, j_start, v.subVec(0, n_inputs)); 00116 // Then the rest (target + weight). 00117 source->getSubRow( 00118 i, 00119 source->inputsize(), 00120 v.subVec(n_inputs, v.length() - n_inputs)); 00121 } 00122 00124 // makeDeepCopyFromShallowCopy // 00126 void SubInputVMatrix::makeDeepCopyFromShallowCopy(map<const void*, void*>& copies) 00127 { 00128 inherited::makeDeepCopyFromShallowCopy(copies); 00129 } 00130 00131 } // end of namespace PLearn 00132

Generated on Tue Aug 17 16:07:37 2004 for PLearn by doxygen 1.3.7