Model Class
Loaded form of a compiled model archive; the simplified entry point to run inference on Modalix. More...
Declaration
class simaai::neat::Model { ... }
Included Headers
#include <Model.h>
Enumerations Index
| enum class | Stage { ... } |
|
Selector for fragment(Stage) and backend_fragment(Stage). More... | |
Friends Index
| struct | internal::ModelAccess |
Public Constructors Index
| Model (const std::string &model_path) | |
|
Load and validate a compiled model archive at the given path with default options. More... | |
| Model (const std::string &model_path, const Options &opt) | |
|
Load and validate a compiled model archive with explicit options. More... | |
| Model (Model &&) noexcept | |
|
Move-constructible. More... | |
Public Destructor Index
| ~Model () | |
|
Destructor; releases the impl and (optionally) cleans up extracted model-archive data. More... | |
Public Operators Index
| Model & | operator= (Model &&) noexcept |
|
Move-assignable. (Models are not copyable.) More... | |