Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
md-shafiul-alam committed Sep 4, 2024
1 parent 50d61ed commit 6e55c27
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class DAAL_EXPORT ModelBuilder
* \param[in] parentId Parent node to which new node is added (use noParent for root node)
* \param[in] position Position in parent (e.g. 0 for left and 1 for right child in a binary tree)
* \param[in] classLabel Class label to be predicted
* \param[in] cover Cover (Hessian sum) of the node, added in v2024.0.1
* \param[in] cover Cover (Hessian sum) of the node
* \return Node identifier
*/
NodeId addLeafNode(const TreeId treeId, const NodeId parentId, const size_t position, const size_t classLabel, const double cover)
Expand All @@ -132,7 +132,7 @@ class DAAL_EXPORT ModelBuilder
* \param[in] parentId Parent node to which new node is added (use noParent for root node)
* \param[in] position Position in parent (e.g. 0 for left and 1 for right child in a binary tree)
* \param[in] proba Array with probability values for each class
* \param[in] cover Cover (Hessian sum) of the node, added in v2024.0.1
* \param[in] cover Cover (Hessian sum) of the node
* \return Node identifier
*/
NodeId addLeafNodeByProba(const TreeId treeId, const NodeId parentId, const size_t position, const double * const proba, const double cover)
Expand All @@ -158,8 +158,8 @@ class DAAL_EXPORT ModelBuilder
* \param[in] position Position in parent (e.g. 0 for left and 1 for right child in a binary tree)
* \param[in] featureIndex Feature index for splitting
* \param[in] featureValue Feature value for splitting
* \param[in] defaultLeft Behaviour in case of missing values, added in v2024.0.1
* \param[in] cover Cover (Hessian sum) of the node, added in v2024.0.1
* \param[in] defaultLeft Behaviour in case of missing values
* \param[in] cover Cover (Hessian sum) of the node
* \return Node identifier
*/
NodeId addSplitNode(const TreeId treeId, const NodeId parentId, const size_t position, const size_t featureIndex, const double featureValue,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class DAAL_EXPORT ModelBuilder
* \param[in] parentId Parent node to which new node is added (use noParent for root node)
* \param[in] position Position in parent (e.g. 0 for left and 1 for right child in a binary tree)
* \param[in] response Response value for leaf node to be predicted
* \param[in] cover Cover (Hessian sum) of the node, added in v2024.0.1
* \param[in] cover Cover (Hessian sum) of the node
* \return Node identifier
*/
NodeId addLeafNode(TreeId treeId, NodeId parentId, size_t position, double response, double cover)
Expand All @@ -135,8 +135,8 @@ class DAAL_EXPORT ModelBuilder
* \param[in] position Position in parent (e.g. 0 for left and 1 for right child in a binary tree)
* \param[in] featureIndex Feature index for splitting
* \param[in] featureValue Feature value for splitting
* \param[in] defaultLeft Behaviour in case of missing values, added in v2024.0.1
* \param[in] cover Cover (Hessian sum) of the node, added in v2024.0.1
* \param[in] defaultLeft Behaviour in case of missing values
* \param[in] cover Cover (Hessian sum) of the node
* \return Node identifier
*/
NodeId addSplitNode(TreeId treeId, NodeId parentId, size_t position, size_t featureIndex, double featureValue, int defaultLeft, double cover)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class DAAL_EXPORT ModelBuilder
* \param[in] parentId Parent node to which new node is added (use noParent for root node)
* \param[in] position Position in parent (e.g. 0 for left and 1 for right child in a binary tree)
* \param[in] response Response value for leaf node to be predicted
* \param[in] cover Cover of the node (sum_hess), added in v2024.0.1
* \param[in] cover Cover of the node (sum_hess)
* \return Node identifier
*/
NodeId addLeafNode(TreeId treeId, NodeId parentId, size_t position, double response, double cover)
Expand All @@ -133,8 +133,8 @@ class DAAL_EXPORT ModelBuilder
* \param[in] position Position in parent (e.g. 0 for left and 1 for right child in a binary tree)
* \param[in] featureIndex Feature index for splitting
* \param[in] featureValue Feature value for splitting
* \param[in] defaultLeft Behaviour in case of missing values, added in v2024.0.1
* \param[in] cover Cover of the node (sum_hess), added in v2024.0.1
* \param[in] defaultLeft Behaviour in case of missing values
* \param[in] cover Cover of the node (sum_hess)
* \return Node identifier
*/
NodeId addSplitNode(TreeId treeId, NodeId parentId, size_t position, size_t featureIndex, double featureValue, int defaultLeft, double cover)
Expand Down

0 comments on commit 6e55c27

Please sign in to comment.