File tree 1 file changed +4
-4
lines changed
FruitToEmoji/sketches/object_color_classify
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 20
20
// Arduino_TensorFlowLite - Version: 0.alpha.precompiled
21
21
#include < TensorFlowLite.h>
22
22
23
- #include < tensorflow/lite/experimental/ micro/kernels /all_ops_resolver.h>
24
- #include < tensorflow/lite/experimental/ micro/micro_error_reporter.h>
25
- #include < tensorflow/lite/experimental/ micro/micro_interpreter.h>
23
+ #include < tensorflow/lite/micro/all_ops_resolver.h>
24
+ #include < tensorflow/lite/micro/micro_error_reporter.h>
25
+ #include < tensorflow/lite/micro/micro_interpreter.h>
26
26
#include < tensorflow/lite/schema/schema_generated.h>
27
27
#include < tensorflow/lite/version.h>
28
28
#include < Arduino_APDS9960.h>
@@ -34,7 +34,7 @@ tflite::MicroErrorReporter tflErrorReporter;
34
34
// pull in all the TFLM ops, you can remove this line and
35
35
// only pull in the TFLM ops you need, if would like to reduce
36
36
// the compiled size of the sketch.
37
- tflite::ops::micro:: AllOpsResolver tflOpsResolver;
37
+ tflite::AllOpsResolver tflOpsResolver;
38
38
39
39
const tflite::Model* tflModel = nullptr ;
40
40
tflite::MicroInterpreter* tflInterpreter = nullptr ;
You can’t perform that action at this time.
0 commit comments