# tflchef ## What is tflchef? Do you need a tensorflow lite model for testing? Ask it to _tflchef_. Given a recipe, _tflchef_ will cook a tensorflow lite model for you. **NOTE** A model that _tflchef_ generates is compatible with TensorFlow Lite in TensorFlow v1.12.0 release ## Tutorial: How to use? This example explains how to generate a tensorflow lite model with a single Conv2D operation with a kernel filled with random values generated according to normal (or gaussian) distribution (mean = 0.0f / stddev = 1.0f) and bias with constant values (1.1f) with _tflchef_. The first step is to write a recipe! Type the following command, and then you may get ``sample.recipe``: ``` $ cat > sample.recipe < sample.tflite ``` - Without redirection ``` $ tflchef-file sample.recipe sample.tflite ``` Done :)