SHOGUN v0.9.0
|
The Custom Distance allows for custom user provided distance matrices.
For squared training matrices it allows to store only the upper triangle of the distance to save memory: Full symmetric distance matrices can be stored as is or can be internally converted into (or directly given in) upper triangle representation. Also note that values are stored as 32bit floats.
在文件CustomDistance.h第29行定义。
公有成员 | |
CCustomDistance () | |
CCustomDistance (CDistance *d) | |
CCustomDistance (const float64_t *dm, int32_t rows, int32_t cols) | |
CCustomDistance (const float32_t *dm, int32_t rows, int32_t cols) | |
virtual | ~CCustomDistance () |
virtual bool | dummy_init (int32_t rows, int32_t cols) |
virtual bool | init (CFeatures *l, CFeatures *r) |
virtual void | cleanup () |
virtual EDistanceType | get_distance_type () |
virtual EFeatureType | get_feature_type () |
virtual EFeatureClass | get_feature_class () |
virtual const char * | get_name () const |
bool | set_triangle_distance_matrix_from_triangle (const float64_t *dm, int32_t len) |
bool | set_triangle_distance_matrix_from_triangle (const float32_t *dm, int32_t len) |
template<class T > | |
bool | set_triangle_distance_matrix_from_triangle_generic (const T *dm, int64_t len) |
bool | set_triangle_distance_matrix_from_full (const float64_t *dm, int32_t rows, int32_t cols) |
bool | set_triangle_distance_matrix_from_full (const float32_t *dm, int32_t rows, int32_t cols) |
template<class T > | |
bool | set_triangle_distance_matrix_from_full_generic (const T *dm, int32_t rows, int32_t cols) |
bool | set_full_distance_matrix_from_full (const float64_t *dm, int32_t rows, int32_t cols) |
bool | set_full_distance_matrix_from_full (const float32_t *dm, int32_t rows, int32_t cols) |
template<class T > | |
bool | set_full_distance_matrix_from_full_generic (const T *dm, int32_t rows, int32_t cols) |
virtual int32_t | get_num_vec_lhs () |
virtual int32_t | get_num_vec_rhs () |
virtual bool | has_features () |
保护成员 | |
virtual float64_t | compute (int32_t row, int32_t col) |
保护属性 | |
float32_t * | dmatrix |
int32_t | num_rows |
int32_t | num_cols |
bool | upper_diagonal |
CCustomDistance | ( | ) |
default constructor
在文件CustomDistance.cpp第19行定义。
CCustomDistance | ( | CDistance * | d | ) |
constructor
compute custom distance from given distance matrix
d | distance matrix |
在文件CustomDistance.cpp第24行定义。
CCustomDistance | ( | const float64_t * | dm, |
int32_t | rows, | ||
int32_t | cols | ||
) |
constructor
sets full distance matrix from full distance matrix (from double precision floats)
dm | distance matrix |
rows | number of rows in matrix |
cols | number of cols in matrix |
在文件CustomDistance.cpp第65行定义。
CCustomDistance | ( | const float32_t * | dm, |
int32_t | rows, | ||
int32_t | cols | ||
) |
constructor
sets full distance matrix from full distance matrix (from single precision floats)
dm | distance matrix |
rows | number of rows in matrix |
cols | number of cols in matrix |
在文件CustomDistance.cpp第72行定义。
~CCustomDistance | ( | ) | [virtual] |
在文件CustomDistance.cpp第79行定义。
void cleanup | ( | ) | [virtual] |
virtual float64_t compute | ( | int32_t | row, |
int32_t | col | ||
) | [protected, virtual] |
compute distance function
row | row |
col | col |
实现了CDistance。
在文件CustomDistance.h第358行定义。
bool dummy_init | ( | int32_t | rows, |
int32_t | cols | ||
) | [virtual] |
initialize distance with dummy features
Distances always need feature objects assigned. As the custom distance does not really require this it creates some magic dummy features that only know about the number of vectors
rows | features of left-hand side |
cols | features of right-hand side |
在文件CustomDistance.cpp第84行定义。
virtual EDistanceType get_distance_type | ( | ) | [virtual] |
return what type of distance we are
实现了CDistance。
在文件CustomDistance.h第97行定义。
virtual EFeatureClass get_feature_class | ( | ) | [virtual] |
return feature class the distance can deal with
实现了CDistance。
在文件CustomDistance.h第109行定义。
virtual EFeatureType get_feature_type | ( | ) | [virtual] |
return feature type the distance can deal with
实现了CDistance。
在文件CustomDistance.h第103行定义。
virtual const char* get_name | ( | void | ) | const [virtual] |
virtual int32_t get_num_vec_lhs | ( | ) | [virtual] |
get number of vectors of lhs features
重载CDistance。
在文件CustomDistance.h第328行定义。
virtual int32_t get_num_vec_rhs | ( | ) | [virtual] |
get number of vectors of rhs features
重载CDistance。
在文件CustomDistance.h第337行定义。
virtual bool has_features | ( | ) | [virtual] |
test whether features have been assigned to lhs and rhs
重载CDistance。
在文件CustomDistance.h第346行定义。
initialize distance
l | features of left-hand side |
r | features of right-hand side |
重载CDistance。
在文件CustomDistance.cpp第89行定义。
bool set_full_distance_matrix_from_full | ( | const float32_t * | dm, |
int32_t | rows, | ||
int32_t | cols | ||
) |
set full distance matrix from full distance matrix
for float32's
dm | distance matrix |
rows | number of rows in matrix |
cols | number of cols in matrix |
在文件CustomDistance.h第286行定义。
bool set_full_distance_matrix_from_full | ( | const float64_t * | dm, |
int32_t | rows, | ||
int32_t | cols | ||
) |
set full distance matrix from full distance matrix
for float64's
dm | distance matrix |
rows | number of rows in matrix |
cols | number of cols in matrix |
在文件CustomDistance.h第271行定义。
bool set_full_distance_matrix_from_full_generic | ( | const T * | dm, |
int32_t | rows, | ||
int32_t | cols | ||
) |
set full distance matrix from full distance matrix
dm | distance matrix |
rows | number of rows in matrix |
cols | number of cols in matrix |
在文件CustomDistance.h第300行定义。
bool set_triangle_distance_matrix_from_full | ( | const float64_t * | dm, |
int32_t | rows, | ||
int32_t | cols | ||
) |
set distance matrix (only elements from upper triangle) from squared matrix
for float64's
dm | distance matrix |
rows | number of rows in matrix |
cols | number of cols in matrix |
在文件CustomDistance.h第205行定义。
bool set_triangle_distance_matrix_from_full | ( | const float32_t * | dm, |
int32_t | rows, | ||
int32_t | cols | ||
) |
set distance matrix (only elements from upper triangle) from squared matrix
for float32's
dm | distance matrix |
rows | number of rows in matrix |
cols | number of cols in matrix |
在文件CustomDistance.h第221行定义。
bool set_triangle_distance_matrix_from_full_generic | ( | const T * | dm, |
int32_t | rows, | ||
int32_t | cols | ||
) |
set distance matrix (only elements from upper triangle) from squared matrix
dm | distance matrix |
rows | number of rows in matrix |
cols | number of cols in matrix |
在文件CustomDistance.h第236行定义。
bool set_triangle_distance_matrix_from_triangle | ( | const float32_t * | dm, |
int32_t | len | ||
) |
set distance matrix (only elements from upper triangle) from elements of upper triangle (concat'd), including the main diagonal
small variant for floats32's, triangle needs to have less than 2**32 elements
dm | distance matrix |
len | denotes the size of the array and should match len=cols*(cols+1)/2 |
在文件CustomDistance.h第143行定义。
bool set_triangle_distance_matrix_from_triangle | ( | const float64_t * | dm, |
int32_t | len | ||
) |
set distance matrix (only elements from upper triangle) from elements of upper triangle (concat'd), including the main diagonal
small variant for floats64's, triangle needs to have less than 2**32 elements
dm | distance matrix |
len | denotes the size of the array and should match len=cols*(cols+1)/2 |
在文件CustomDistance.h第127行定义。
bool set_triangle_distance_matrix_from_triangle_generic | ( | const T * | dm, |
int64_t | len | ||
) |
set distance matrix (only elements from upper triangle) from elements of upper triangle (concat'd), including the main diagonal
big variant, allowing the triangle to have more than 2**31-1 elements
dm | distance matrix |
len | denotes the size of the array and should match len=cols*(cols+1)/2 |
在文件CustomDistance.h第160行定义。
distance matrix
在文件CustomDistance.h第390行定义。
int32_t num_cols [protected] |
number of columns
在文件CustomDistance.h第394行定义。
int32_t num_rows [protected] |
number of rows
在文件CustomDistance.h第392行定义。
bool upper_diagonal [protected] |
upper diagonal
在文件CustomDistance.h第396行定义。