Generate cc arrays with generate_cc_arrays.py

What is the best way to use “tensorflow/lite/micro/tools/generate_cc_arrays.py”? I am only slightly familiar with Makefiles and unfamiliar with Bazel. So I am wondering if there is a more convenient way than to specify all the filepaths and args on the cli when calling generate_cc_arrays.py.

Thanks for your support.

Hi @subrockmann,

As tensorflow is built on the bazel, it would be recommended to use bazel build. Please refer this reference document that directs you how to use tensorflow/lite/micro/tools/generate_cc_arrays.py using bazel.

Thank You