Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kpedro88 committed Oct 25, 2018
1 parent 9c4b72b commit fb99d55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AnalysisFW/src/TFClientLocal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ void TFClientLocal::predict(unsigned dataID, const tensorflow::Tensor* img, tens
// Run the Classifier
const auto& inputClassifier = createFeatureList(featurizer_outputs[0]);
auto outputs = runClassifier(inputClassifier,sessionC_[dataID]);
result = &outputs[0];
*result = outputs[0];

auto t3 = std::chrono::high_resolution_clock::now();
edm::LogInfo("TFClientLocal") << "Classifier time: " << std::chrono::duration_cast<std::chrono::microseconds>(t3 - t2).count();
Expand Down

0 comments on commit fb99d55

Please sign in to comment.