Belle II Software  release-05-02-19
State Class Reference
Inheritance diagram for State:
Collaboration diagram for State:

Public Member Functions

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

Public Attributes

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

Detailed Description

XGBoost state

Definition at line 20 of file xgboost.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 24 of file xgboost.py.

24  def __init__(self, num_round=0, parameters=None):
25  """ Constructor of the state object """
26 
27  self.parameters = parameters
28 
29  self.num_round = num_round
30 
31  self.estimator = None
32 
33 

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