Expert for the TMVA Multiclass MVA method.
More...
#include <TMVA.h>
|
virtual void | load (Weightfile &weightfile) override |
| Load the expert from a Weightfile.
|
|
virtual std::vector< float > | apply (Dataset &test_data) const override |
| Apply this m_expert onto a dataset.
|
|
virtual std::vector< std::vector< float > > | applyMulticlass (Dataset &test_data) const override |
| Apply this m_expert onto a dataset.
|
|
Expert for the TMVA Multiclass MVA method.
Definition at line 328 of file TMVA.h.
◆ apply()
virtual std::vector< float > apply |
( |
Dataset & |
test_data | ) |
const |
|
inlineoverridevirtual |
Apply this m_expert onto a dataset.
- Parameters
-
Implements Expert.
Definition at line 341 of file TMVA.h.
342 {
343 (void) test_data;
344 return std::vector<float>();
345 };
◆ applyMulticlass()
std::vector< std::vector< float > > applyMulticlass |
( |
Dataset & |
test_data | ) |
const |
|
overridevirtual |
Apply this m_expert onto a dataset.
- Parameters
-
- Returns
- vector of size N=test_data.getNumberOfEvents() with N=m_classes.size() scores for each event in the dataset.
Reimplemented from Expert.
Definition at line 526 of file TMVA.cc.
527 {
528
529 std::vector<std::vector<float>> probabilities(test_data.getNumberOfEvents());
530
531 for (unsigned int iEvent = 0; iEvent < test_data.getNumberOfEvents(); ++iEvent) {
532 test_data.loadEvent(iEvent);
538 }
539 return probabilities;
540 }
TMVAOptionsMulticlass specific_options
Method specific options.
std::vector< float > m_input_cache
Input Cache for TMVA::Reader: Otherwise we would have to set the branch addresses in each apply call.
std::unique_ptr< TMVA::Reader > m_expert
TMVA::Reader pointer.
std::vector< float > m_spectators_cache
Spectators Cache for TMVA::Reader: Otherwise we would have to set the branch addresses in each apply ...
std::string m_method
tmva method name
◆ load()
Load the expert from a Weightfile.
- Parameters
-
weightfile | containing all information necessary to build the m_expert |
Reimplemented from TMVAExpert.
Definition at line 445 of file TMVA.cc.
446 {
447
449
450
451 std::string custom_weightfile = weightfile.generateFileName(std::string(
"_") +
specific_options.
m_method +
".weights.xml");
452 weightfile.getFile("TMVA_Weightfile", custom_weightfile);
453
455
457 auto base = std::string("TMVA@@MethodBase");
462 auto ctor2 = std::string(
"Method") +
specific_options.
m_method + std::string(
"(TString&,TString&,TMVA::DataSetInfo&,TString&)");
464
465 gROOT->GetPluginManager()->AddHandler(base.c_str(), regexp1.c_str(), className.c_str(), pluginName.c_str(), ctor1.c_str());
466 gROOT->GetPluginManager()->AddHandler(base.c_str(), regexp2.c_str(), className.c_str(), pluginName.c_str(), ctor2.c_str());
467 B2INFO("Registered new TMVA Plugin named " << pluginName);
468 }
469
471 B2FATAL("Could not set up expert! Please see preceding error message from TMVA!");
472 }
473
474 }
virtual void load(Weightfile &weightfile) override
Load the expert from a Weightfile.
std::string m_type
tmva method type
◆ m_expert
std::unique_ptr<TMVA::Reader> m_expert |
|
protectedinherited |
TMVA::Reader pointer.
Definition at line 294 of file TMVA.h.
◆ m_general_options
General options loaded from the weightfile.
Definition at line 70 of file Expert.h.
◆ m_input_cache
std::vector<float> m_input_cache |
|
mutableprotectedinherited |
Input Cache for TMVA::Reader: Otherwise we would have to set the branch addresses in each apply call.
Definition at line 296 of file TMVA.h.
◆ m_spectators_cache
std::vector<float> m_spectators_cache |
|
mutableprotectedinherited |
Spectators Cache for TMVA::Reader: Otherwise we would have to set the branch addresses in each apply call.
Definition at line 298 of file TMVA.h.
◆ specific_options
Method specific options.
Definition at line 355 of file TMVA.h.
The documentation for this class was generated from the following files: