Skip to content

Commit bafa98a

Browse files
committed
fix the new path of DNN old models
1 parent ab16f49 commit bafa98a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

RecoHGCal/TICL/plugins/TracksterInferenceByDNN.cc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,14 @@ namespace ticl {
128128
void TracksterInferenceByDNN::fillPSetDescription(edm::ParameterSetDescription& iDesc) {
129129
iDesc.add<int>("algo_verbosity", 0);
130130
iDesc
131-
.add<edm::FileInPath>("onnxPIDModelPath",
132-
edm::FileInPath("RecoHGCal/TICL/data/ticlv5/onnx_models/patternrecognition/id_v0.onnx"))
131+
.add<edm::FileInPath>(
132+
"onnxPIDModelPath",
133+
edm::FileInPath("RecoHGCal/TICL/data/ticlv5/onnx_models/DNN/patternrecognition/id_v0.onnx"))
133134
->setComment("Path to ONNX PID model CLU3D");
134135
iDesc
135136
.add<edm::FileInPath>(
136137
"onnxEnergyModelPath",
137-
edm::FileInPath("RecoHGCal/TICL/data/ticlv5/onnx_models/patternrecognition/energy_v0.onnx"))
138+
edm::FileInPath("RecoHGCal/TICL/data/ticlv5/onnx_models/DNN/patternrecognition/energy_v0.onnx"))
138139
->setComment("Path to ONNX Energy model CLU3D");
139140
iDesc.add<std::vector<std::string>>("inputNames", {"input"});
140141
iDesc.add<std::vector<std::string>>("output_en", {"enreg_output"});

0 commit comments

Comments
 (0)