ConcatRowsVMatrix.h
Go to the documentation of this file.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
00044
#ifndef ConcatRowsVMatrix_INC
00045
#define ConcatRowsVMatrix_INC
00046
00047
#include "VMat.h"
00048
00049
namespace PLearn {
00050
using namespace std;
00051
00052 class ConcatRowsVMatrix:
public VMatrix
00053 {
00054
00055
private:
00056
00057 typedef VMatrix inherited;
00058
00059
protected:
00060
00061 TVec<VMat> array;
00062
00066 TVec<VMat> to_concat;
00067
00071 bool need_fix_mappings;
00072
00077 TMat< map<real, real> >
fixed_mappings;
00078
00079
public:
00080
00081 bool fully_check_mappings;
00082 bool only_common_fields;
00083
00086
ConcatRowsVMatrix(
TVec<VMat> the_array =
TVec<VMat>());
00087
ConcatRowsVMatrix(
VMat d1,
VMat d2);
00088
00089
virtual real get(
int i,
int j)
const;
00090
virtual void getSubRow(
int i,
int j,
Vec v)
const;
00091
00092
virtual void reset_dimensions();
00093
00094
virtual real dot(
int i1,
int i2,
int inputsize)
const;
00095
virtual real dot(
int i,
const Vec& v)
const;
00096
virtual void putMat(
int i,
int j,
Mat m);
00097
00098
PLEARN_DECLARE_OBJECT(
ConcatRowsVMatrix);
00099
virtual void build();
00100
00102
virtual void makeDeepCopyFromShallowCopy(map<const void*, void*>& copies);
00103
00104
protected:
00105
00108
void getpositions(
int i,
int& whichvm,
int& rowofvm)
const;
00109
00110
static void declareOptions(
OptionList &ol);
00111
00112
private:
00113
00114
void build_();
00115
00119
void ensureMappingsConsistency();
00120
00123
void fullyCheckMappings(
bool report_progress =
true);
00124
00127
void findCommonFields();
00128
00131
void recomputeDimensions();
00132
00133 };
00134
00135
DECLARE_OBJECT_PTR(
ConcatRowsVMatrix);
00136
00137 inline VMat vconcat(
VMat d1,
VMat d2)
00138 {
return new ConcatRowsVMatrix(d1,d2); }
00139
00140 inline VMat vconcat(
Array<VMat> ds) {
00141
if (ds.
size() == 1) {
00142
00143
return ds[0];
00144 }
else {
00145
return new ConcatRowsVMatrix(ds);
00146 }
00147 }
00148
00149 }
00150
#endif
Generated on Tue Aug 17 15:49:58 2004 for PLearn by
1.3.7