Skip to content

Commit 6b31f4f

Browse files
authored
[PWGJE] Fix int8_t configurables (AliceO2Group#8522)
1 parent 34dfe4c commit 6b31f4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGJE/Tasks/bjetTaggingML.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ struct BJetTaggingML {
114114
Configurable<std::vector<double>> binsPtMl{"binsPtMl", std::vector<double>{5., 1000.}, "pT bin limits for ML application"};
115115
Configurable<std::vector<int>> cutDirMl{"cutDirMl", std::vector<int>{cuts_ml::CutSmaller, cuts_ml::CutNot}, "Whether to reject score values greater or smaller than the threshold"};
116116
Configurable<LabeledArray<double>> cutsMl{"cutsMl", {defaultCutsMl[0], 1, 2, {"pT bin 0"}, {"score for default b-jet tagging", "uncer 1"}}, "ML selections per pT bin"};
117-
Configurable<int8_t> nClassesMl{"nClassesMl", (int8_t)2, "Number of classes in ML model"};
117+
Configurable<int> nClassesMl{"nClassesMl", 2, "Number of classes in ML model"};
118118
Configurable<std::vector<std::string>> namesInputFeatures{"namesInputFeatures", std::vector<std::string>{"feature1", "feature2"}, "Names of ML model input features"};
119119

120120
Configurable<std::string> ccdbUrl{"ccdbUrl", "http://alice-ccdb.cern.ch", "url of the ccdb repository"};

0 commit comments

Comments
 (0)