Belle II Software development
|
Public Member Functions | |
def | weightfile_identifier_basename (self) |
def | get_weightfile_xml_identifier (self, fast_bdt_option=None, recotrack_option=None) |
def | tree_name (self) |
def | random_seed (self) |
Basf2PathTask | data_collection_task (self) |
def | requires (self) |
def | output (self) |
def | process (self) |
Static Public Attributes | |
b2luigi | n_events_training = b2luigi.IntParameter() |
Number of events to generate for the training data set. | |
b2luigi | experiment_number = b2luigi.IntParameter() |
Experiment number of the conditions database, e.g. | |
b2luigi | process_type |
Define which kind of process shall be used. | |
b2luigi | training_target |
Feature/variable to use as truth label in the quality estimator MVA classifier. | |
b2luigi | exclude_variables |
List of collected variables to not use in the training of the QE MVA classifier. | |
b2luigi | fast_bdt_option |
Hyperparameter option of the FastBDT algorithm. | |
A teacher task runs the basf2 mva teacher on the training data provided by a data collection task. Since teacher tasks are needed for all quality estimators covered by this steering file and the only thing that changes is the required data collection task and some training parameters, I decided to use inheritance and have the basic functionality in this base class/interface and have the specific teacher tasks inherit from it.
Definition at line 1163 of file combined_quality_estimator_teacher.py.
Basf2PathTask data_collection_task | ( | self | ) |
Property defining the specific ``DataCollectionTask`` to require. Must implemented by the inheriting specific teacher task class.
Definition at line 1252 of file combined_quality_estimator_teacher.py.
def get_weightfile_xml_identifier | ( | self, | |
fast_bdt_option = None , |
|||
recotrack_option = None |
|||
) |
Name of the xml weightfile that is created by the teacher task. It is subsequently used as a local weightfile in the following validation tasks.
Definition at line 1216 of file combined_quality_estimator_teacher.py.
def output | ( | self | ) |
Generate list of output files that the task should produce. The task is considered finished if and only if the outputs all exist.
Definition at line 1281 of file combined_quality_estimator_teacher.py.
def process | ( | self | ) |
Use basf2_mva teacher to create MVA weightfile from collected training data variables. This is the main process that is dispatched by the ``run`` method that is inherited from ``Basf2Task``.
Definition at line 1288 of file combined_quality_estimator_teacher.py.
def random_seed | ( | self | ) |
Property defining random seed to be used by the ``GenerateSimTask``. Should differ from the random seed in the test data samples. Must implemented by the inheriting specific teacher task class.
Definition at line 1243 of file combined_quality_estimator_teacher.py.
def requires | ( | self | ) |
Generate list of luigi Tasks that this Task depends on.
Reimplemented in RecoTrackQETeacherTask.
Definition at line 1261 of file combined_quality_estimator_teacher.py.
def tree_name | ( | self | ) |
Property defining the name of the tree in the ROOT file from the ``data_collection_task`` that contains the recorded training data. Must implemented by the inheriting specific teacher task class.
Definition at line 1234 of file combined_quality_estimator_teacher.py.
def weightfile_identifier_basename | ( | self | ) |
Property defining the basename for the .xml and .root weightfiles that are created. Has to be implemented by the inheriting teacher task class.
Definition at line 1207 of file combined_quality_estimator_teacher.py.
|
static |
List of collected variables to not use in the training of the QE MVA classifier.
In addition to variables containing the "truth" substring, which are excluded by default.
Definition at line 1194 of file combined_quality_estimator_teacher.py.
|
static |
Experiment number of the conditions database, e.g.
defines simulation geometry
Definition at line 1177 of file combined_quality_estimator_teacher.py.
|
static |
Hyperparameter option of the FastBDT algorithm.
default are the FastBDT default values.
Definition at line 1200 of file combined_quality_estimator_teacher.py.
|
static |
Number of events to generate for the training data set.
Definition at line 1175 of file combined_quality_estimator_teacher.py.
|
static |
Define which kind of process shall be used.
Decide between simulating BBBAR or BHABHA, MUMU, YY, DDBAR, UUBAR, SSBAR, CCBAR, reconstructing DATA or already simulated files (USESIMBB/EE) or running on existing reconstructed files (USERECBB/EE)
Definition at line 1181 of file combined_quality_estimator_teacher.py.
|
static |
Feature/variable to use as truth label in the quality estimator MVA classifier.
Definition at line 1187 of file combined_quality_estimator_teacher.py.