Genki ML Format
CMake build system
Seamless Integration
Genki ML integrates seamlessly into your CMake project.
Once you've cloned the genkiml repository, you can simply add the library to your project
add_subdirectory(genkiml)
Let genkiml
know where to find your trained model. The model will be automatically converted and compiled into your executable.
genkiml_compile_model(<your_target_name> <path_to_model>)
Then link genkiml
to your executable.
target_link_libraries(<your_target_name> PUBLIC genkiml)