Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
MethodRXGB.h
Go to the documentation of this file.
1 // @(#)root/tmva/rmva $Id$
2 // Author: Omar Zapata,Lorenzo Moneta, Sergei Gleyzer 2015
3 
4 /**********************************************************************************
5  * Project: TMVA - a Root-integrated toolkit for multivariate data analysis *
6  * Package: TMVA *
7  * Class : RMethodRXGB *
8  * *
9  * Description: *
10  * R´s Package xgboost method based on ROOTR *
11  * *
12  **********************************************************************************/
13 
14 #ifndef ROOT_TMVA_RMethodXGB
15 #define ROOT_TMVA_RMethodXGB
16 
17 //////////////////////////////////////////////////////////////////////////
18 // //
19 // RMethodRXGB //
20 // //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 #include "TMVA/RMethodBase.h"
25 
26 namespace TMVA {
27 
28  class Factory; // DSMTEST
29  class Reader; // DSMTEST
30  class DataSetManager; // DSMTEST
31  class Types;
32  class MethodRXGB: public RMethodBase {
33 
34  public :
35 
36  // constructors
37  MethodRXGB(const TString &jobName,
38  const TString &methodTitle,
39  DataSetInfo &theData,
40  const TString &theOption = "");
41 
42  MethodRXGB(DataSetInfo &dsi,
43  const TString &theWeightFile);
44 
45 
46  ~MethodRXGB(void);
47  void Train();
48  // options treatment
49  void Init();
50  void DeclareOptions();
51  void ProcessOptions();
52  // create ranking
53  const Ranking *CreateRanking()
54  {
55  return NULL; // = 0;
56  }
57 
58 
59  Bool_t HasAnalysisType(Types::EAnalysisType type, UInt_t numberClasses, UInt_t numberTargets);
60 
61  // performs classifier testing
62  virtual void TestClassification();
63 
64 
65  Double_t GetMvaValue(Double_t *errLower = 0, Double_t *errUpper = 0);
66  virtual void MakeClass(const TString &classFileName = TString("")) const; //required for model persistence
67  using MethodBase::ReadWeightsFromStream;
68  // the actual "weights"
69  virtual void AddWeightsXMLTo(void * /*parent*/) const {} // = 0;
70  virtual void ReadWeightsFromXML(void * /*wghtnode*/) {} // = 0;
71  virtual void ReadWeightsFromStream(std::istream &) {} //= 0; // backward compatibility
72 
73  void ReadModelFromFile();
74 
75  // signal/background classification response for all current set of data
76  virtual std::vector<Double_t> GetMvaValues(Long64_t firstEvt = 0, Long64_t lastEvt = -1, Bool_t logProgress = false);
77 
78  private :
79  DataSetManager *fDataSetManager; // DSMTEST
80  friend class Factory; // DSMTEST
81  friend class Reader; // DSMTEST
82  protected:
83 
84 
85  //RXGBfunction options
86  //https://github.com/dmlc/xgboost/blob/master/doc/parameter.md
87  UInt_t fNRounds;
88  Double_t fEta;
89  UInt_t fMaxDepth;
90  static Bool_t IsModuleLoaded;
91 
92  std::vector<UInt_t> fFactorNumeric; //factors creations
93  //xgboost require a numeric factor then background=0 signal=1 from fFactorTrain
94 
95  ROOT::R::TRFunctionImport predict;
96  ROOT::R::TRFunctionImport xgbtrain;
97  ROOT::R::TRFunctionImport xgbdmatrix;
98  ROOT::R::TRFunctionImport xgbsave;
99  ROOT::R::TRFunctionImport xgbload;
100  ROOT::R::TRFunctionImport asfactor;
101  ROOT::R::TRFunctionImport asmatrix;
102  ROOT::R::TRObject *fModel;
103 
104 
105  // get help message text
106  void GetHelpMessage() const;
107 
108  ClassDef(MethodRXGB, 0)
109  };
110 } // namespace TMVA
111 #endif