Real-time Inference
Cross-platform C++
Make sure you've followed the steps to integrate genkiml
into your CMake build system.
Now you can load the model and use it in your C++ code
#include "genkiml.h"
int main()
{
auto model = genki::ml::load_model();
const std::array<float, 100> input { /* ... */ };
const auto result = model->infer({input});
// Do something with result...
}