Belle II Software  light-2212-foldex
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 26 of file xgboost.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 31 of file xgboost.py.

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

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