Responsible for creation of Recognizer and DynamicModel instances.
More...
#include <Engine.hpp>
|
| template<class T , typename... Args> |
| static auto | make (Args &&... args) -> std::shared_ptr< Engine > |
| | Gets or constructs a shared Asr::Engine instance of type T with args.
|
| |
Responsible for creation of Recognizer and DynamicModel instances.
◆ Engine() [1/3]
| Engine::Engine |
( |
char const * | name, |
|
|
std::string const & | configPath ) |
|
protected |
- Parameters
-
| name | Name of the configuration object in vsdk.json |
| configPath | Path to a vsdk.json formatted file |
◆ Engine() [2/3]
| Engine::Engine |
( |
char const * | name, |
|
|
nlohmann::json | config ) |
|
protected |
- Parameters
-
| name | Name of the configuration object in vsdk.json |
| config | A vsdk.json formatted JSON configuration object |
◆ Engine() [3/3]
| Engine::Engine |
( |
char const * | name, |
|
|
char const * | configPath ) |
|
protected |
Specialization used to avoid overload collisions, forwards to Engine(char const*, std::string const &);
- Parameters
-
| name | Name of the configuration object in vsdk.json |
| configPath | Path to a vsdk.json formatted file |
◆ ~Engine()
◆ make()
template<class T , typename... Args>
| static auto Vsdk::Asr::Engine::make |
( |
Args &&... | args | ) |
-> std::shared_ptr<Engine>
|
|
static |
Gets or constructs a shared Asr::Engine instance of type T with args.
- Note
- If an engine of this type exists, a shared instance will be returned instead.
◆ recognizer()
| auto Engine::recognizer |
( |
std::string const & | name | ) |
-> std::shared_ptr<Recognizer> |
Gets or constructs a shared Recognizer instance that's been previously configured.
- Parameters
-
| name | Found in the configuration of this engine, name of the Recognizer you want |
◆ dynamicModel()
| auto Engine::dynamicModel |
( |
std::string const & | name | ) |
-> std::shared_ptr<DynamicModel> |
Gets or constructs a shared DynamicModel instance that's been previously configured.
- Parameters
-
| name | Found in the configuration of this engine, name of the model you want |
◆ recognizersInfo()
| auto Engine::recognizersInfo |
( |
| ) |
const -> std::unordered_map<std::string, RecognizerInfo> const & |
◆ modelsInfo()
| auto Engine::modelsInfo |
( |
| ) |
const -> std::unordered_map<std::string, ModelInfo> const & |
◆ makeRecognizer()
| virtual auto Vsdk::Asr::Engine::makeRecognizer |
( |
std::string | name | ) |
-> Recognizer * |
|
protectedpure virtual |
◆ makeDynamicModel()
| virtual auto Vsdk::Asr::Engine::makeDynamicModel |
( |
std::string | name | ) |
-> DynamicModel * |
|
protectedpure virtual |
◆ setRecognizerInfo()
- Note
- If
info.name.empty() then removes entry
◆ setModelInfo()
- Note
- If
info.name.empty() then removes entry