![]() |
Belle II Software light-2509-fornax
|
Options for the ONNX MVA method. More...
#include <ONNX.h>
Public Member Functions | |
virtual void | load (const boost::property_tree::ptree &) override |
Load mechanism to load Options from a xml tree. | |
virtual void | save (boost::property_tree::ptree &) const override |
Save mechanism to store Options in a xml tree. | |
virtual po::options_description | getDescription () override |
Returns a program options description for all available options. | |
virtual std::string | getMethod () const override |
Return method name. | |
Public Attributes | |
std::string | m_outputName |
Name of the output Tensor that is used to make predictions. | |
std::string | m_modelFilename |
Filename of the model. | |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
Return method name.
Implements SpecificOptions.
Definition at line 398 of file ONNX.h.
|
overridevirtual |
Load mechanism to load Options from a xml tree.
Implements Options.
Definition at line 62 of file ONNX.cc.
|
overridevirtual |
std::string m_modelFilename |
Filename of the model.
Is used in ONNXTeacher::train as a path to the ONNX model to store in the weightfile.
std::string m_outputName |
Name of the output Tensor that is used to make predictions.
Only has to be provided if there are multiple outputs and none of them is called "output". In case of a single output, or if among multiple outputs there is one called "output", it will be used automatically.