23#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
24#include <numpy/arrayobject.h>
58MethodPyGTB::MethodPyGTB(
const TString &jobName,
59 const TString &methodTitle,
61 const TString &theOption) :
69 fMinWeightFractionLeaf(0.0),
75 fMaxLeafNodes(
"None"),
89 fMinWeightFractionLeaf(0.0),
95 fMaxLeafNodes(
"None"),
121 loss function to be optimized. 'deviance' refers to\
122 deviance (= logistic regression) for classification\
123 with probabilistic outputs. For loss 'exponential' gradient\
124 boosting recovers the AdaBoost algorithm.");
127 learning rate shrinks the contribution of each tree by `learning_rate`.\
128 There is a trade-off between learning_rate and n_estimators.");
131 The number of boosting stages to perform. Gradient boosting\
132 is fairly robust to over-fitting so a large number usually\
133 results in better performance.");
136 The fraction of samples to be used for fitting the individual base\
137 learners. If smaller than 1.0 this results in Stochastic Gradient\
138 Boosting. `subsample` interacts with the parameter `n_estimators`.\
139 Choosing `subsample < 1.0` leads to a reduction of variance\
140 and an increase in bias.");
143 The minimum number of samples required to split an internal node.");
146 The minimum number of samples in newly created leaves. A split is \
147 discarded if after the split, one of the leaves would contain less then \
148 ``min_samples_leaf`` samples.");
151 The minimum weighted fraction of the input samples required to be at a \
155 The maximum depth of the tree. If None, then nodes are expanded until \
156 all leaves are pure or until all leaves contain less than \
157 min_samples_split samples. \
158 Ignored if ``max_leaf_nodes`` is not None.");
161 An estimator object that is used to compute the initial\
162 predictions. ``init`` has to provide ``fit`` and ``predict``.\
163 If None it uses ``loss.init_estimator`");
166 If int, random_state is the seed used by the random number generator;\
167 If RandomState instance, random_state is the random number generator;\
168 If None, the random number generator is the RandomState instance used\
174 Controls the verbosity of the tree building process.");
177 Grow trees with ``max_leaf_nodes`` in best-first fashion.\
178 Best nodes are defined as relative reduction in impurity.\
179 If None then unlimited number of leaf nodes.\
180 If not None then ``max_depth`` will be ignored.");
183 When set to ``True``, reuse the solution of the previous call to fit\
184 and add more estimators to the ensemble, otherwise, just fit a whole\
188 "Store trained classifier in this file");
195 if (
fLoss !=
"deviance" &&
fLoss !=
"exponential") {
196 Log() << kFATAL <<
Form(
"Loss = %s ... that does not work!",
fLoss.Data())
197 <<
" The options are 'deviance' or 'exponential'." <<
Endl;
203 Log() << kFATAL <<
"LearningRate <= 0 ... that does not work!" <<
Endl;
209 Log() << kFATAL <<
"NEstimators <= 0 ... that does not work!" <<
Endl;
215 Log() << kFATAL <<
"MinSamplesSplit < 0 ... that does not work!" <<
Endl;
221 Log() << kFATAL <<
"Subsample < 0 ... that does not work!" <<
Endl;
227 Log() << kFATAL <<
"MinSamplesLeaf < 0 ... that does not work!" <<
Endl;
233 Log() << kFATAL <<
"MinSamplesSplit < 0 ... that does not work!" <<
Endl;
239 Log() << kFATAL <<
"MinWeightFractionLeaf < 0 ... that does not work !" <<
Endl;
245 Log() << kFATAL <<
" MaxDepth <= 0 ... that does not work !! " <<
Endl;
252 Log() << kFATAL <<
Form(
"Init = %s ... that does not work!",
fInit.Data())
253 <<
" The options are None or BaseEstimator, which is an estimator object that"
254 <<
"is used to compute the initial predictions. "
255 <<
"'init' has to provide 'fit' and 'predict' methods."
256 <<
" If None it uses 'loss.init_estimator'." <<
Endl;
263 <<
" If int, random_state is the seed used by the random number generator;"
264 <<
" If RandomState instance, random_state is the random number generator;"
265 <<
" If None, the random number generator is the RandomState instance used by 'np.random'."
277 Log() << kFATAL <<
Form(
" MaxFeatures = %s... that does not work !! ",
fMaxFeatures.Data())
278 <<
"int, float, string or None, optional (default='auto')"
279 <<
"The number of features to consider when looking for the best split:"
280 <<
"If int, then consider `max_features` features at each split."
281 <<
"If float, then `max_features` is a percentage and"
282 <<
"`int(max_features * n_features)` features are considered at each split."
283 <<
"If 'auto', then `max_features=sqrt(n_features)`."
284 <<
"If 'sqrt', then `max_features=sqrt(n_features)`."
285 <<
"If 'log2', then `max_features=log2(n_features)`."
286 <<
"If None, then `max_features=n_features`." <<
Endl;
292 <<
" The options are None or integer." <<
Endl;
328 npy_intp dimsData[2];
329 dimsData[0] = fNrowsTraining;
331 fTrainData = (PyArrayObject *)PyArray_SimpleNew(2, dimsData, NPY_FLOAT);
333 float *TrainData = (
float *)(PyArray_DATA(
fTrainData));
335 npy_intp dimsClasses = (npy_intp) fNrowsTraining;
336 fTrainDataClasses = (PyArrayObject *)PyArray_SimpleNew(1, &dimsClasses, NPY_FLOAT);
340 fTrainDataWeights = (PyArrayObject *)PyArray_SimpleNew(1, &dimsClasses, NPY_FLOAT);
344 for (
int i = 0; i < fNrowsTraining; i++) {
348 TrainData[j + i *
fNvars] =
e->GetValue(j);
352 TrainDataClasses[i] =
e->GetClass();
355 TrainDataWeights[i] =
e->GetWeight();
359 PyRunString(
"classifier = sklearn.ensemble.GradientBoostingClassifier(loss=loss, learning_rate=learningRate, n_estimators=nEstimators, max_depth=maxDepth, min_samples_split=minSamplesSplit, min_samples_leaf=minSamplesLeaf, min_weight_fraction_leaf=minWeightFractionLeaf, subsample=subsample, max_features=maxFeatures, max_leaf_nodes=maxLeafNodes, init=init, verbose=verbose, warm_start=warmStart, random_state=randomState)",
360 "Failed to setup classifier");
364 PyRunString(
"dump = classifier.fit(trainData, trainDataClasses, trainDataWeights)",
"Failed to train classifier");
369 Log() << kFATAL <<
"Can't create classifier object from GradientBoostingClassifier" <<
Endl;
395 if (firstEvt > lastEvt || lastEvt > nEvents) lastEvt = nEvents;
396 if (firstEvt < 0) firstEvt = 0;
397 nEvents = lastEvt-firstEvt;
406 <<
" sample (" << nEvents <<
" events)" <<
Endl;
412 PyArrayObject *pEvent= (PyArrayObject *)PyArray_SimpleNew(2, dims, NPY_FLOAT);
413 float *pValue = (
float *)(PyArray_DATA(pEvent));
415 for (
Int_t ievt=0; ievt<nEvents; ievt++) {
419 pValue[ievt *
fNvars + i] =
e->GetValue(i);
424 PyArrayObject *result = (PyArrayObject *)PyObject_CallMethod(
fClassifier,
const_cast<char *
>(
"predict_proba"),
const_cast<char *
>(
"(O)"), pEvent);
425 double *proba = (
double *)(PyArray_DATA(result));
429 for (
int i = 0; i < nEvents; ++i) {
438 <<
"Elapsed time for evaluation of " << nEvents <<
" events: "
460 PyArrayObject *pEvent= (PyArrayObject *)PyArray_SimpleNew(2, dims, NPY_FLOAT);
461 float *pValue = (
float *)(PyArray_DATA(pEvent));
462 for (
UInt_t i = 0; i <
fNvars; i++) pValue[i] =
e->GetValue(i);
465 PyArrayObject *result = (PyArrayObject *)PyObject_CallMethod(
fClassifier,
const_cast<char *
>(
"predict_proba"),
const_cast<char *
>(
"(O)"), pEvent);
466 double *proba = (
double *)(PyArray_DATA(result));
489 PyArrayObject *pEvent= (PyArrayObject *)PyArray_SimpleNew(2, dims, NPY_FLOAT);
490 float *pValue = (
float *)(PyArray_DATA(pEvent));
491 for (
UInt_t i = 0; i <
fNvars; i++) pValue[i] =
e->GetValue(i);
494 PyArrayObject *result = (PyArrayObject *)PyObject_CallMethod(
fClassifier,
const_cast<char *
>(
"predict_proba"),
const_cast<char *
>(
"(O)"), pEvent);
495 double *proba = (
double *)(PyArray_DATA(result));
539 PyArrayObject* pRanking = (PyArrayObject*) PyObject_GetAttrString(
fClassifier,
"feature_importances_");
540 if(pRanking == 0)
Log() << kFATAL <<
"Failed to get ranking from classifier" <<
Endl;
559 Log() <<
"A gradient tree boosting classifier builds a model from an ensemble" <<
Endl;
560 Log() <<
"of decision trees, which are adapted each boosting step to fit better" <<
Endl;
561 Log() <<
"to previously misclassified events." <<
Endl;
563 Log() <<
"Check out the scikit-learn documentation for more information." <<
Endl;
#define REGISTER_METHOD(CLASS)
for example
char * Form(const char *fmt,...)
OptionBase * DeclareOptionRef(T &ref, const TString &name, const TString &desc="")
Class that contains all the data information.
UInt_t GetNClasses() const
const Event * GetEvent() const
Types::ETreeType GetCurrentType() const
Long64_t GetNEvents(Types::ETreeType type=Types::kMaxTreeType) const
Long64_t GetNTrainingEvents() const
void SetCurrentEvent(Long64_t ievt) const
const Event * GetTrainingEvent(Long64_t ievt) const
virtual void DeclareCompatibilityOptions()
options that are used ONLY for the READER to ensure backward compatibility they are hence without any...
const char * GetName() const
const TString & GetWeightFileDir() const
const TString & GetMethodName() const
DataSetInfo & DataInfo() const
virtual void TestClassification()
initialization
UInt_t GetNVariables() const
Bool_t IsModelPersistence()
void NoErrorCalc(Double_t *const err, Double_t *const errUpper)
const TString & GetInputLabel(Int_t i) const
PyObject * pMinSamplesLeaf
Double_t fMinWeightFractionLeaf
std::vector< Double_t > mvaValues
std::vector< Double_t > GetMvaValues(Long64_t firstEvt=0, Long64_t lastEvt=-1, Bool_t logProgress=false)
get all the MVA values for the events of the current Data type
std::vector< Float_t > classValues
Bool_t HasAnalysisType(Types::EAnalysisType type, UInt_t numberClasses, UInt_t numberTargets)
void GetHelpMessage() const
MethodPyGTB(const TString &jobName, const TString &methodTitle, DataSetInfo &theData, const TString &theOption="")
const Ranking * CreateRanking()
virtual void TestClassification()
initialization
std::vector< Float_t > & GetMulticlassValues()
virtual void ReadModelFromFile()
TString fFilenameClassifier
PyObject * pMinSamplesSplit
PyObject * pMinWeightFractionLeaf
Double_t GetMvaValue(Double_t *errLower=0, Double_t *errUpper=0)
static int PyIsInitialized()
Check Python interpreter initialization status.
PyArrayObject * fTrainData
PyObject * Eval(TString code)
Evaluate Python code.
static void PyInitialize()
Initialize Python interpreter.
static void Serialize(TString file, PyObject *classifier)
Serialize Python object.
PyArrayObject * fTrainDataWeights
static Int_t UnSerialize(TString file, PyObject **obj)
Unserialize Python object.
PyArrayObject * fTrainDataClasses
void PyRunString(TString code, TString errorMessage="Failed to run python code", int start=Py_single_input)
Execute Python code from string.
Ranking for variables in method (implementation)
virtual void AddRank(const Rank &rank)
Add a new rank take ownership of it.
Timing information for training and evaluation of MVA methods.
TString GetElapsedTime(Bool_t Scientific=kTRUE)
returns pretty string with elapsed time
Singleton class for Global types used by TMVA.
Abstract ClassifierFactory template that handles arbitrary types.
MsgLogger & Endl(MsgLogger &ml)