Upcoming maintenance
Dear Customers and Partners.
This website will be undergoing scheduled maintenance on June 14, 2023. Please be aware there may be disruption to the developer portal website and associated services during the scheduled maintenance period.
This upgrade is essential to ensure the continued performance, reliability, and security of Developer World.
We apologize for any inconvenience.
Spresense SDK - Tensorflow : Flatbuffers missing
-
@Arco Another thing I noticed in your example is incorrect code in Make.defs:
ifneq ($(CONFIG_EXAMPLES_HLASOVE_POVELY),y) CONFIGURED_APPS += hlasove_povely endif
It should be:
ifeq ($(CONFIG_EXAMPLES_HLASOVE_POVELY),y) CONFIGURED_APPS += hlasove_povely endif
ifneq
->ifeq
-
Thanks @KamilTomaszewski, you saved me once again !
Have a nice day ! ( make is working ) -
Hey @arco
I am trying to create a new Tensorflow lite micro application based on image classification similar to the (/spresense/examples/tflmrt_lenet application) and deploy it on Spresense. Could you please share the steps to be followed to create the application?
Any kind of help is highly appreciated
Thanks in advance
-
@arco said in Spresense SDK - Tensorflow : Flatbuffers missing:
Hello @KamilTomaszewski
after a while I came back to this issue.
I tried to create new project inside of /spresense/examples (same as tf_examples). I was following whole structure of tf_examples from Makefile, Kconfig to creating configuration files in /spresense/sdk/examples/.I have launched ( hlasove_povely is name of the project )
$ tools/config.py hlasove_povely
and after that
$ make
But I am getting this output :
make[6]: *** No rule to make target `context'. Stop. make[5]: *** [hlasove_povely_context] Error 2 make[4]: *** [../examples/_context] Error 2 make[3]: *** [/Users/arcius/C++/Sony-Spresense/spresense/sdk/apps/.._context] Error 2 make[2]: *** [context_serialize] Error 2 make[1]: *** [context] Error 2 make: *** [all] Error 2
Am I something missing thanks
Can you share the structure (the make, kconfig and so on..) (or any link/resource that mentions it) that you followed (which you have mentioned here) ?
Thanks