diff --git a/tensorflow/lite/micro/examples/network_tester/network_tester_test.cc b/tensorflow/lite/micro/examples/network_tester/network_tester_test.cc index fbafdc4d3edbb7cc29d84362f19cb0dd83903248..62665ae47a768247b0ade80922a01fc7092a3387 100644 --- a/tensorflow/lite/micro/examples/network_tester/network_tester_test.cc +++ b/tensorflow/lite/micro/examples/network_tester/network_tester_test.cc @@ -24,8 +24,8 @@ limitations under the License. #include "tensorflow/lite/schema/schema_generated.h" #ifdef ETHOS_U -#include "tensorflow/lite/micro/examples/person_detection/person_detect_model_data.h" #include "tensorflow/lite/micro/examples/person_detection/person_image_data.h" +#include "tensorflow/lite/micro/tools/make/downloads/person_model_int8/person_detect_model_data.h" #endif #ifndef TENSOR_ARENA_SIZE diff --git a/tensorflow/lite/micro/tools/make/ext_libs/person_detection_int8_vela_convert.sh b/tensorflow/lite/micro/tools/make/ext_libs/person_detection_int8_vela_convert.sh index c7ebfc2adbcd0f3c5468b2adeaf1d06036b12e93..8da1c01262923b58f5584bae5dd111e779833655 100755 --- a/tensorflow/lite/micro/tools/make/ext_libs/person_detection_int8_vela_convert.sh +++ b/tensorflow/lite/micro/tools/make/ext_libs/person_detection_int8_vela_convert.sh @@ -72,7 +72,7 @@ if [ ! -f ${CONVERTED_PERSON_MODEL_INT8} ]; then # Convert .tflite back to C array. echo "// This file is generated by $0." > ${CONVERTED_PERSON_MODEL_INT8} - echo '#include "tensorflow/lite/micro/examples/person_detection/person_detect_model_data.h"' >> \ + echo '#include "tensorflow/lite/micro/tools/make/downloads/person_model_int8/person_detect_model_data.h"' >> \ ${CONVERTED_PERSON_MODEL_INT8} echo -n "const " >> ${CONVERTED_PERSON_MODEL_INT8} xxd -i ${DOWNLOADED_PERSON_MODEL_INT8_PATH}/person_detect_vela.tflite >> \