Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
OnnxMetricLearning.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file OnnxMetricLearning.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2023 CERN for the benefit of the Acts project
4 //
5 // This Source Code Form is subject to the terms of the Mozilla Public
6 // License, v. 2.0. If a copy of the MPL was not distributed with this
7 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 
9 #pragma once
10 
13 
14 #include <memory>
15 
16 namespace Ort {
17 class Env;
18 class Session;
19 class Value;
20 } // namespace Ort
21 
22 namespace Acts {
23 
25  public:
26  struct Config {
29  int embeddingDim = 8;
30  float rVal = 1.6;
31  int knnVal = 500;
32  };
33 
34  OnnxMetricLearning(const Config& cfg, std::unique_ptr<const Logger> logger);
36 
37  std::tuple<std::any, std::any> operator()(std::vector<float>& inputValues,
38  std::size_t numNodes,
39  int deviceHint = -1) override;
40 
41  Config config() const { return m_cfg; }
42 
43  private:
44  void buildEdgesWrapper(std::vector<float>& embedFeatures,
45  std::vector<int64_t>& edgeList, int64_t numSpacepoints,
46  const Logger& logger) const;
47 
48  std::unique_ptr<const Acts::Logger> m_logger;
49  const auto& logger() const { return *m_logger; }
50 
52  std::unique_ptr<Ort::Env> m_env;
53  std::unique_ptr<Ort::Session> m_model;
54 };
55 
56 } // namespace Acts