45 : fLearningModel ( kFull )
46 , fImportanceCut ( 0 )
47 , fLinQuantile ( 0.025 )
49 , fAverageSupport ( 0.8 )
50 , fAverageRuleSigma( 0.4 )
54 , fRuleMinDist ( 1e-3 )
55 , fNRulesGenerated ( 0 )
57 , fEventCacheOK ( true )
61 , fRuleMapEvents ( 0 )
112 for ( std::vector<Rule *>::iterator itrRule =
fRules.begin(); itrRule !=
fRules.end(); itrRule++ ) {
135 for (
UInt_t i=0; i<nvars; i++) {
193 if (ncoeffs<1)
return 0;
197 for (
Int_t i=0; i<ncoeffs; i++) {
198 val =
fRules[i]->GetCoefficient();
211 for (
UInt_t i=0; i<nrules; i++) {
212 fRules[i]->SetCoefficient(0.0);
222 if (v.size()!=nrules) {
223 Log() <<
kFATAL <<
"<SetCoefficients> - BUG TRAP - input vector worng size! It is = " << v.size()
224 <<
" when it should be = " << nrules <<
Endl;
226 for (
UInt_t i=0; i<nrules; i++) {
227 fRules[i]->SetCoefficient(v[i]);
238 if (nrules==0)
return;
240 for (
UInt_t i=0; i<nrules; i++) {
241 v[i] = (
fRules[i]->GetCoefficient());
270 std::vector< Char_t > removeMe( nrulesIn,
false );
276 for (
UInt_t i=0; i<nrulesIn; i++) {
279 for (
UInt_t k=i+1; k<nrulesIn; k++) {
285 remind = (r>0.5 ? k:i);
292 if (!removeMe[remind]) {
293 removeMe[remind] =
true;
303 for (
UInt_t i=0; i<nrulesIn; i++) {
317 Log() <<
kVERBOSE <<
"Removed " << nrulesIn - nrulesOut <<
" out of " << nrulesIn <<
" rules" <<
Endl;
326 if (nrules==0)
return;
334 for (
UInt_t i=0; i<nrules; i++) {
347 Log() <<
kINFO <<
"Removed " << nrules-ind <<
" out of a total of " << nrules
361 for (
UInt_t i=0; i<nlin; i++) {
383 if ((nrules>0) && (events->size()>0)) {
384 for ( std::vector< Rule * >::iterator itrRule=
fRules.begin(); itrRule!=
fRules.end(); itrRule++ ) {
388 for ( std::vector<const Event * >::const_iterator itrEvent=events->begin(); itrEvent!=events->end(); itrEvent++ ) {
389 if ((*itrRule)->EvalEvent( *(*itrEvent) )) {
390 ew = (*itrEvent)->GetWeight();
399 t = (t<0 ? 0:
sqrt(t));
404 (*itrRule)->SetSupport(s);
405 (*itrRule)->SetNorm(t);
406 (*itrRule)->SetSSB( ssb );
407 (*itrRule)->SetSSBNeve(
Double_t(ssig+sbkg));
424 Double_t maxImp = (maxRuleImp>maxLinImp ? maxRuleImp : maxLinImp);
434 fRules[i]->SetImportanceRef(impref);
446 for (
int i=0; i<nrules; i++ ) {
447 fRules[i]->CalcImportance();
448 imp =
fRules[i]->GetImportance();
449 if (imp>maxImp) maxImp = imp;
451 for (
Int_t i=0; i<nrules; i++ ) {
452 fRules[i]->SetImportanceRef(maxImp);
476 for (
UInt_t i=0; i<nvars; i++ ) {
479 if (imp>maxImp) maxImp = imp;
501 for (
UInt_t ind=0; ind<nrules; ind++ ) {
502 rimp =
fRules[ind]->GetImportance();
503 nvarsUsed =
fRules[ind]->GetNumVarsUsed();
505 Log() <<
kFATAL <<
"<CalcVarImportance> Variables for importance calc!!!??? A BUG!" <<
Endl;
506 rimpN = (nvarsUsed > 0 ? rimp/nvarsUsed:0.0);
507 for (
UInt_t iv=0; iv<nvars; iv++ ) {
508 if (
fRules[ind]->ContainsVariable(iv)) {
524 for (
UInt_t iv=0; iv<nvars; iv++ ) {
528 for (
UInt_t iv=0; iv<nvars; iv++ ) {
543 fRules.resize(rules.size());
568 UInt_t ntrees = forest.size();
569 for (
UInt_t ind=0; ind<ntrees; ind++ ) {
573 nendn = (nrules/2) + 1;
575 sumn2 += nendn*nendn;
576 nrulesCheck += nrules;
578 Double_t nmean = (ntrees>0) ? sumnendn/ntrees : 0;
580 Double_t ndev = 2.0*(nmean-2.0-nsigm)/(nmean-2.0+nsigm);
582 Log() <<
kVERBOSE <<
"Average number of end nodes per tree = " << nmean <<
Endl;
583 if (ntrees>1)
Log() <<
kVERBOSE <<
"sigma of ditto ( ~= mean-2 ?) = " 586 Log() <<
kVERBOSE <<
"Deviation from exponential model = " << ndev <<
Endl;
587 Log() <<
kVERBOSE <<
"Corresponds to L (eq. 13, RuleFit ppr) = " << nmean <<
Endl;
589 if (nrulesCheck != static_cast<Int_t>(
fRules.size())) {
591 <<
"BUG! number of generated and possible rules do not match! N(rules) = " <<
fRules.size()
592 <<
" != " << nrulesCheck <<
Endl;
616 UInt_t neve = events->size();
617 UInt_t nvars = ((*events)[0])->GetNVariables();
619 typedef std::pair< Double_t, Int_t> dataType;
620 typedef std::pair< Double_t, dataType > dataPoint;
622 std::vector< std::vector<dataPoint> > vardata(nvars);
623 std::vector< Double_t > varsum(nvars,0.0);
624 std::vector< Double_t > varsum2(nvars,0.0);
629 for (
UInt_t i=0; i<neve; i++) {
630 ew = ((*events)[i])->GetWeight();
632 val = ((*events)[i])->GetValue(
v);
633 vardata[
v].push_back( dataPoint( val, dataType(ew,((*events)[i])->
GetClass()) ) );
661 std::sort( vardata[
v].begin(),vardata[
v].end() );
666 while ( (ie<neve) && (neff<nquant) ) {
667 neff += vardata[
v][ie].second.first;
670 indquantM = (ie==0 ? 0:ie-1);
674 while ( (ie>0) && (neff<nquant) ) {
676 neff += vardata[
v][ie].second.first;
678 indquantP = (ie==neve ? ie=neve-1:ie);
680 fLinDM[
v] = vardata[
v][indquantM].first;
681 fLinDP[
v] = vardata[
v][indquantP].first;
691 for (ie=0; ie<neve; ie++) {
692 val = vardata[
v][ie].first;
693 ew = vardata[
v][ie].second.first;
694 type = vardata[
v][ie].second.second;
697 varsum2[
v] += ew*lx*lx;
731 fstot +=
fLinPDFS[
v]->GetBinContent(bin);
732 fbtot +=
fLinPDFB[
v]->GetBinContent(bin);
734 if (nvars<1)
return 0;
735 ntot = (fstot+fbtot)/
Double_t(nvars);
737 return fstot/(fstot+fbtot);
755 for (
UInt_t ir=0; ir<nrules; ir++) {
768 if (ntot>0)
return nsig/ntot;
806 if ((nlt>0) && (nrt>0)) nt=2.0;
819 const UInt_t neve = events->size();
822 const Event *eveData;
838 std::vector<Int_t> varcnt;
846 varcnt.resize(nvars,0);
850 for (
UInt_t i=0; i<nrules; i++ ) {
852 if (
fRules[i]->ContainsVariable(
v)) varcnt[
v]++;
854 sigRule =
fRules[i]->IsSignalRule();
868 for (
UInt_t e=0; e<neve; e++) {
869 eveData = (*events)[e];
870 tagged =
fRules[i]->EvalEvent(*eveData);
871 sigTag = (tagged && sigRule);
872 bkgTag = (tagged && (!sigRule));
874 sigTrue = (eveData->
GetClass() == 0);
877 if (sigTag && sigTrue) nss++;
878 if (sigTag && !sigTrue) nsb++;
879 if (bkgTag && sigTrue) nbs++;
880 if (bkgTag && !sigTrue) nbb++;
884 if (ntag>0 && neve > 0) {
893 fRuleFSig = (nsig>0) ? static_cast<Double_t>(nsig)/
static_cast<Double_t>(nsig+nbkg) : 0;
908 for (
UInt_t i=0; i<nrules; i++ ) {
926 Log() <<
kINFO <<
"-------------------RULE ENSEMBLE SUMMARY------------------------" <<
Endl;
928 if (mrf)
Log() <<
kINFO <<
"Tree training method : " << (mrf->
UseBoost() ?
"AdaBoost":
"Random") << Endl;
936 Log() <<
kINFO <<
"----------------------------------------------------------------" <<
Endl;
949 Log() << kmtype <<
"================================================================" <<
Endl;
950 Log() << kmtype <<
" M o d e l " <<
Endl;
951 Log() << kmtype <<
"================================================================" <<
Endl;
966 << std::resetiosflags(std::ios::right)
975 Log() << kmtype <<
"------------------------------------" <<
Endl;
976 Log() << kmtype <<
"Linear model (weights unnormalised)" <<
Endl;
977 Log() << kmtype <<
"------------------------------------" <<
Endl;
978 Log() << kmtype << std::setw(maxL) <<
"Variable" 979 << std::resetiosflags(std::ios::right) <<
" : " 980 << std::setw(11) <<
" Weights" 981 << std::resetiosflags(std::ios::right) <<
" : " 983 << std::resetiosflags(std::ios::right)
985 Log() << kmtype <<
"------------------------------------" <<
Endl;
990 << std::resetiosflags(std::ios::right)
995 Log() << kmtype <<
"-> importance below threshhold = " 999 Log() << kmtype <<
"------------------------------------" <<
Endl;
1002 else Log() << kmtype <<
"Linear terms were disabled" <<
Endl;
1004 if ((!
DoRules()) || (nrules==0)) {
1006 Log() << kmtype <<
"Rule terms were disabled" <<
Endl;
1009 Log() << kmtype <<
"Eventhough rules were included in the model, none passed! " << nrules <<
Endl;
1013 Log() << kmtype <<
"Number of rules = " << nrules <<
Endl;
1018 Log() << kmtype <<
"Fraction of rules containing a variable (%):" <<
Endl;
1027 std::list< std::pair<double,int> > sortedImp;
1028 for (
Int_t i=0; i<nrules; i++) {
1029 sortedImp.push_back( std::pair<double,int>(
fRules[i]->GetImportance(),i ) );
1033 Log() << kmtype <<
"Printing the first " << printN <<
" rules, ordered in importance." <<
Endl;
1035 for ( std::list< std::pair<double,int> >::reverse_iterator itpair = sortedImp.rbegin();
1036 itpair != sortedImp.rend(); itpair++ ) {
1037 ind = itpair->second;
1041 fRules[ind]->PrintLogger(
Form(
"Rule %4d : ",pind+1));
1044 if (nrules==printN) {
1045 Log() << kmtype <<
"All rules printed" <<
Endl;
1048 Log() << kmtype <<
"Skipping the next " << nrules-printN <<
" rules" <<
Endl;
1054 Log() << kmtype <<
"================================================================" <<
Endl;
1063 Int_t dp = os.precision();
1071 os <<
"Offset= " <<
fOffset << std::endl;
1072 os <<
"NRules= " << nrules << std::endl;
1073 for (
UInt_t i=0; i<nrules; i++){
1074 os <<
"***Rule " << i << std::endl;
1079 os <<
"NLinear= " <<
fLinTermOK.size() << std::endl;
1080 for (
UInt_t i=0; i<nlinear; i++) {
1081 os <<
"***Linear " << i << std::endl;
1082 os << std::setprecision(10) << (
fLinTermOK[i] ? 1:0) <<
" " 1089 os << std::setprecision(dp);
1111 for (
UInt_t i=0; i<nlinear; i++) {
1131 Int_t iLearningModel;
1146 for (i=0; i<nrules; i++) {
1148 fRules[i]->SetRuleEnsemble(
this );
1149 fRules[i]->ReadFromXML( ch );
1158 fLinDP .resize( nlinear );
1159 fLinDM .resize( nlinear );
1195 istr >> dummy >> nrules;
1201 for (
UInt_t i=0; i<nrules; i++){
1202 istr >> dummy >> idum;
1204 (
fRules.back())->SetRuleEnsemble(
this );
1213 istr >> dummy >> nlinear;
1218 fLinDP .resize( nlinear );
1219 fLinDM .resize( nlinear );
1224 for (
UInt_t i=0; i<nlinear; i++) {
1225 istr >> dummy >> idum;
1241 if(
this != &other) {
1268 if (dtree==0)
return 0;
1270 Int_t nendnodes = 0;
1272 return 2*(nendnodes-1);
1280 if (node==0)
return;
1305 if (node==0)
return;
1313 fRules.push_back( rule );
1318 Log() <<
kFATAL <<
"<AddRule> - ERROR failed in creating a rule! BUG!" <<
Endl;
1335 Log() <<
kFATAL <<
"<MakeTheRule> Input node is NULL. Should not happen. BUG!" <<
Endl;
1343 std::vector< const Node * > nodeVec;
1344 const Node *parent = node;
1349 nodeVec.push_back( node );
1352 if (!parent)
continue;
1355 nodeVec.insert( nodeVec.begin(), parent );
1358 if (nodeVec.size()<2) {
1359 Log() <<
kFATAL <<
"<MakeTheRule> BUG! Inconsistent Rule!" <<
Endl;
1362 Rule *rule =
new Rule(
this, nodeVec );
1375 if ((ifirst==0) || (ilast==0) || (ifirst>ilast)) {
1377 ilast = events->size()-1;
1403 std::vector<UInt_t> ruleind;
1405 for (
UInt_t i=ifirst; i<=ilast; i++) {
1415 Log() <<
kVERBOSE <<
"Made rule map for event# " << ifirst <<
" : " << ilast <<
Endl;
1423 os <<
"DON'T USE THIS - TO BE REMOVED" << std::endl;
void MakeRuleMap(const std::vector< const TMVA::Event *> *events=0, UInt_t ifirst=0, UInt_t ilast=0)
Makes rule map for all events.
MsgLogger & Endl(MsgLogger &ml)
void SetEvent(const Event &e)
virtual Double_t Rndm(Int_t i=0)
Machine independent random number generator.
std::vector< TH1F *> fLinPDFS
const std::vector< const TMVA::Event *> & GetTrainingEvents() const
bool equal(double d1, double d2, double stol=10000)
RuleEnsemble()
constructor
Rule * MakeTheRule(const Node *node)
Make a Rule from a given Node.
Int_t CalcNRules(const TMVA::DecisionTree *dtree)
calculate the number of rules
EMsgType GetMinType() const
Double_t CalcLinNorm(Double_t stdev)
virtual ~RuleEnsemble()
destructor
const std::vector< TMVA::Rule * > & GetRulesConst() const
std::vector< Double_t > fLinDP
const std::vector< Double_t > & GetVarImportance() const
Short_t Min(Short_t a, Short_t b)
std::vector< Double_t > fRulePBB
const Event * GetTrainingEvent(UInt_t i) const
void CleanupLinear()
cleanup linear model
virtual DecisionTreeNode * GetRoot() const
const TString & GetInputLabel(Int_t i) const
std::vector< TMVA::Rule *> fRules
std::vector< Char_t > fLinTermOK
void SetAverageRuleSigma(Double_t v)
const std::vector< const TMVA::DecisionTree * > & GetForest() const
void SetMsgType(EMsgType t)
void SetImportanceRef(Double_t impref)
set reference importance
void RuleResponseStats()
calculate various statistics for this rule
Double_t GetRuleMinDist() const
std::vector< Double_t > fLinNorm
void RemoveSimilarRules()
remove rules that behave similar
void Copy(RuleEnsemble const &other)
copy function
virtual Node * GetRight() const
Double_t PdfRule(Double_t &nsig, Double_t &ntot) const
This function returns Pr( y = 1 | x ) for rules.
virtual Node * GetLeft() const
Double_t FStar() const
We want to estimate F* = argmin Eyx( L(y,F(x) ), min wrt F(x) F(x) = FL(x) + FR(x) ...
void SetRules(const std::vector< TMVA::Rule *> &rules)
set rules
void Print() const
print function
std::vector< TH1F *> fLinPDFB
void SetMinType(EMsgType minType)
std::vector< Double_t > fRulePSB
void CalcImportance()
calculate the importance of each rule
ELearningModel GetLearningModel() const
std::vector< Double_t > fLinCoefficients
void CleanupRules()
cleanup rules
Double_t GetImportanceCut() const
void * AddXMLTo(void *parent) const
write rules to XML
virtual Node * GetParent() const
const MethodBase * GetMethodBase() const
void CalcVarImportance()
Calculates variable importance using eq (35) in RuleFit paper by Friedman et.al.
ELearningModel fLearningModel
Double_t CalcRuleImportance()
calculate importance of each rule
void PrintRuleGen() const
print rule generation info
std::vector< Double_t > fLinDM
void MakeRulesFromTree(const DecisionTree *dtree)
create rules from the decsision tree structure
Double_t CoefficientRadius()
Calculates sqrt(Sum(a_i^2)), i=1..N (NOTE do not include a0)
void AddRule(const Node *node)
add a new rule to the tree
char * Form(const char *fmt,...)
MsgLogger & Log() const
message logger
Double_t PdfLinear(Double_t &nsig, Double_t &ntot) const
This function returns Pr( y = 1 | x ) for the linear terms.
void RuleStatistics()
calculate various statistics for this rule
const RuleFit * GetRuleFit() const
R__EXTERN TRandom * gRandom
std::ostream & operator<<(std::ostream &os, const BinaryTree &tree)
print the tree recursinvely using the << operator
void ReadFromXML(void *wghtnode)
read rules from XML
const std::vector< const TMVA::Event * > * GetTrainingEvents() const
get list of training events from the rule fitter
Double_t GetLinQuantile() const
void PrintRaw(std::ostream &os) const
write rules to stream
std::vector< Char_t > fEventRuleVal
void FindNEndNodes(const TMVA::Node *node, Int_t &nendnodes)
find the number of leaf nodes
Double_t GetNEveEff() const
void Initialize(const RuleFit *rf)
Initializes all member variables with default values.
void SetCoefficients(const std::vector< Double_t > &v)
set all rule coefficients
std::vector< Double_t > fVarImportance
std::vector< Double_t > fEventLinearVal
static RooMathCoreReg dummy
void MakeLinearTerms()
Make the linear terms as in eq 25, ref 2 For this the b and (1-b) quatiles are needed.
std::vector< Double_t > fLinImportance
Double_t fAverageRuleSigma
void MakeRules(const std::vector< const TMVA::DecisionTree *> &forest)
Makes rules from the given decision tree.
std::vector< Double_t > fRulePBS
void CalcRuleSupport()
calculate the support for all rules
static Vc_ALWAYS_INLINE int_v max(const int_v &x, const int_v &y)
const std::vector< const TMVA::Event * > * fRuleMapEvents
const MethodBase * GetMethodBase() const
Get a pointer to the original MethodRuleFit.
std::vector< Double_t > fRulePSS
void MakeModel()
create model
Double_t GetOffset() const
void SetMsgType(EMsgType t)
Short_t Max(Short_t a, Short_t b)
const MethodRuleFit * GetMethodRuleFit() const
Get a pointer to the original MethodRuleFit.
void ResetCoefficients()
reset all rule coefficients
void GetCoefficients(std::vector< Double_t > &v)
Retrieve all rule coefficients.
Double_t EvalEvent() const
Short_t GetSelector() const
const MethodRuleFit * GetMethodRuleFit() const
Double_t Sqrt(Double_t x)
Double_t CalcLinImportance()
calculate the linear importance for each rule
UInt_t GetNTreeSample() const
std::vector< Double_t > fRulePTag
const Event * GetTrainingEvent(UInt_t i) const
get the training event from the rule fitter
Bool_t Equal(const Rule &other, Bool_t useCutValue, Double_t maxdist) const
Compare two rules.
std::vector< Double_t > fRuleVarFrac
std::vector< std::vector< UInt_t > > fRuleMap
void ReadRaw(std::istream &istr)
read rule ensemble from stream