You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOG(fatal) << "Input feature " << inputFeature << " not available! Please check your configurables.";
@@ -279,18 +279,18 @@ class MlResponse
279
279
std::vector<o2::ml::OnnxModel> mModels; // OnnxModel objects, one for each bin
280
280
uint8_tmNModels = 1; // number of bins
281
281
uint8_tmNClasses = 3; // number of model classes
282
-
std::vector<double> mBinsLimits = {};// bin limits of the variable (e.g. pT) used to select which model to use
283
-
std::vector<double> mBinsLimitsVar2 = {};// bin limits of a second variable (e.g. multiplicity) used to select which model to use (not used in this base class)
284
-
std::vector<std::string> mPaths = {""};// paths to the models, one for each bin
285
-
std::vector<int> mCutDir = {};// direction of the cuts on the model scores (no cut is also supported)
286
-
o2::framework::LabeledArray<double> mCuts = {};// array of cut values to apply on the model scores
282
+
std::vector<double> mBinsLimits; // bin limits of the variable (e.g. pT) used to select which model to use
283
+
std::vector<double> mBinsLimitsVar2; // bin limits of a second variable (e.g. multiplicity) used to select which model to use (not used in this base class)
284
+
std::vector<std::string> mPaths; // paths to the models, one for each bin
285
+
std::vector<int> mCutDir; // direction of the cuts on the model scores (no cut is also supported)
286
+
o2::framework::LabeledArray<double> mCuts; // array of cut values to apply on the model scores
287
287
std::map<std::string, uint8_t> mAvailableInputFeatures; // map of available input features
288
288
std::vector<uint8_t> mCachedIndices; // vector of index correspondance between configurables and available input features
289
289
uint8_tmNVar1Bins = 1; // number of bins of the first variable (e.g. pT) used to select which model to use
290
290
uint8_tmNVar2Bins = 1; // number of bins of the second variable (e.g. multiplicity) used to select which model to use
291
291
boolmUse2DBinning = false; // switch to enable/disable 2D binning
292
292
293
-
virtualvoidsetAvailableInputFeatures() {return; } // method to fill the map of available input features
293
+
virtualvoidsetAvailableInputFeatures() {} // method to fill the map of available input features
0 commit comments