Belle II Software development
State Class Reference

Public Member Functions

 __init__ (self, num_round=0, parameters=None)
 

Public Attributes

 parameters = parameters
 Parameters passed to xgboost model.
 
 num_round = num_round
 Number of boosting rounds used in xgboost training.
 
 estimator = None
 XGBoost estimator.
 

Detailed Description

XGBoost state

Definition at line 25 of file xgboost.py.

Constructor & Destructor Documentation

◆ __init__()

__init__ ( self,
num_round = 0,
parameters = None )
 Constructor of the state object 

Definition at line 30 of file xgboost.py.

30 def __init__(self, num_round=0, parameters=None):
31 """ Constructor of the state object """
32
33 self.parameters = parameters
34
35 self.num_round = num_round
36
37 self.estimator = None
38
39

Member Data Documentation

◆ estimator

estimator = None

XGBoost estimator.

Definition at line 37 of file xgboost.py.

◆ num_round

num_round = num_round

Number of boosting rounds used in xgboost training.

Definition at line 35 of file xgboost.py.

◆ parameters

parameters = parameters

Parameters passed to xgboost model.

Definition at line 33 of file xgboost.py.


The documentation for this class was generated from the following file: