Haplo Prediction
predict haplogroups
|
SVM model tree node. More...
#include <svm_tree.h>
Data Fields | |
struct SVM_model_node * | parent |
Parent of a model node. | |
uint32_t | parent_label |
Parent label for a model node. | |
struct SVM_model_node ** | subtrees [2] |
Subtrees for each model in a node. | |
Vector_u32 * | labels [2] |
Labels for the two groups in a model node. | |
Vector_u32 ** | altlabels [2] |
Alternative label sets for the two groups in a model node. | |
Vector_d * | cost |
Cost parameter for each model node. | |
Vector_d * | gamma |
Gamma parameter for each model node. | |
uint32_t | num_models |
Number of SVM models. | |
SVM_model ** | models |
SVM model. | |
char ** | model_fnames |
File name for storage of the model at a node. |
SVM model tree node.
Definition at line 136 of file svm_tree.h.
struct SVM_model_node* SVM_model_node::parent |
Parent of a model node.
NULL if the node is the root of the model tree.
Definition at line 143 of file svm_tree.h.
uint32_t SVM_model_node::parent_label |
Parent label for a model node.
If the parent is NULL, the value is undefined.
Definition at line 150 of file svm_tree.h.
struct SVM_model_node** SVM_model_node::subtrees[2] |
Subtrees for each model in a node.
The ith element is NULL if the ith group does not have a subtree.
Definition at line 157 of file svm_tree.h.
Labels for the two groups in a model node.
Definition at line 160 of file svm_tree.h.
Alternative label sets for the two groups in a model node.
Definition at line 163 of file svm_tree.h.
Cost parameter for each model node.
Definition at line 166 of file svm_tree.h.
Gamma parameter for each model node.
Definition at line 169 of file svm_tree.h.
uint32_t SVM_model_node::num_models |
Number of SVM models.
Definition at line 172 of file svm_tree.h.
SVM model.
Definition at line 175 of file svm_tree.h.
char** SVM_model_node::model_fnames |
File name for storage of the model at a node.
Definition at line 178 of file svm_tree.h.