17#ifndef __RECIPE_CHEF_H__
18#define __RECIPE_CHEF_H__
20#include <mio/tflite/schema_generated.h>
21#include <tflchef.pb.h>
32std::unique_ptr<ModelRecipe>
generate_recipe(
const tflite::Model *model);
37bool write_recipe(
const std::string &filename, std::unique_ptr<ModelRecipe> &recipe);
bool write_recipe(const std::string &filename, std::unique_ptr< ModelRecipe > &recipe)
Write ModelRecipe to file with given name.
std::unique_ptr< ModelRecipe > generate_recipe(const tflite::Model *model)
Create ModelRecipe from tflite::Model.