/usr/include/timbl/Choppers.h is in libtimbl4-dev 6.4.4-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #ifndef TIMBL_CHOPPERS_H
#define TIMBL_CHOPPERS_H
/*
$Id: Choppers.h 15565 2013-01-07 14:27:05Z sloot $
$URL: https://ilk.uvt.nl/svn/trunk/sources/Timbl6/include/timbl/Choppers.h $
Copyright (c) 1998 - 2013
ILK - Tilburg University
CLiPS - University of Antwerp
This file is part of timbl
timbl is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
timbl 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
For questions and suggestions, see:
http://ilk.uvt.nl/software.html
or send mail to:
timbl@uvt.nl
*/
namespace Timbl{
static const std::string DefaultSparseString = "0.0000E-17";
class Chopper {
public:
virtual ~Chopper() {};
virtual bool chop( const std::string&, size_t ) = 0;
const std::string& getField( size_t i ) const { return choppedInput[i]; };
virtual double getExW() const { return -1; };
virtual int getOcc() const { return 1; };
virtual std::string getString() const = 0;
void print( std::ostream& os ){
os << getString();
};
void swapTarget( size_t target_pos ){
std::string tmp = choppedInput[target_pos];
for ( size_t i = target_pos+1; i < vSize; ++i )
choppedInput[i-1] = choppedInput[i];
choppedInput[vSize-1] = tmp;
}
static Chopper *create( InputFormatType , bool, int, bool );
static InputFormatType getInputFormat( const std::string&,
bool=false );
static size_t countFeatures( const std::string&,
InputFormatType,
int,
bool=false );
protected:
virtual void init( const std::string&, size_t, bool );
size_t vSize;
std::string strippedInput;
std::vector<std::string> choppedInput;
};
class ExChopper: public virtual Chopper {
public:
double getExW() const { return exW; };
protected:
void init( const std::string&, size_t, bool );
double exW;
};
class OccChopper: public virtual Chopper {
public:
int getOcc() const { return occ; };
protected:
void init( const std::string&, size_t, bool );
int occ;
};
class C45_Chopper : public virtual Chopper {
public:
bool chop( const std::string&, size_t );
std::string getString() const;
};
class C45_ExChopper : public C45_Chopper, public ExChopper {
};
class C45_OccChopper : public C45_Chopper, public OccChopper {
};
class ARFF_Chopper : public C45_Chopper {
public:
bool chop( const std::string&, size_t );
};
class ARFF_ExChopper : public C45_ExChopper {
};
class ARFF_OccChopper : public C45_OccChopper {
};
class Bin_Chopper : public virtual Chopper {
public:
bool chop( const std::string&, size_t );
std::string getString() const;
};
class Bin_ExChopper : public Bin_Chopper, public ExChopper {
};
class Bin_OccChopper : public Bin_Chopper, public OccChopper {
};
class Compact_Chopper : public virtual Chopper {
public:
Compact_Chopper( int L ): fLen(L){};
bool chop( const std::string&, size_t );
std::string getString() const;
private:
int fLen;
Compact_Chopper();
};
class Compact_ExChopper : public Compact_Chopper, public ExChopper {
public:
Compact_ExChopper( int L ): Compact_Chopper( L ){};
private:
Compact_ExChopper();
};
class Compact_OccChopper : public Compact_Chopper, public OccChopper {
public:
Compact_OccChopper( int L ): Compact_Chopper( L ){};
private:
Compact_OccChopper();
};
class Columns_Chopper : public virtual Chopper {
public:
bool chop( const std::string&, size_t );
std::string getString() const;
};
class Columns_ExChopper : public Columns_Chopper, public ExChopper {
};
class Columns_OccChopper : public Columns_Chopper, public OccChopper {
};
class Tabbed_Chopper : public virtual Chopper {
public:
bool chop( const std::string&, size_t );
std::string getString() const;
};
class Tabbed_ExChopper : public Tabbed_Chopper, public ExChopper {
};
class Tabbed_OccChopper : public Tabbed_Chopper, public OccChopper {
};
class Sparse_Chopper : public virtual Chopper {
public:
bool chop( const std::string&, size_t );
std::string getString() const;
};
class Sparse_ExChopper : public Sparse_Chopper, public ExChopper {
};
class Sparse_OccChopper : public Sparse_Chopper, public OccChopper {
};
}
#endif // TIMBL_CHOPPERS_H
|