Skip to content

Update 'tensorflow/tflite-micro-arduino-examples' to 03d8b21 #281

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tflite-micro
Submodule tflite-micro updated 87 files
+ docs/animation_on_arduino.gif
+ docs/magic_wand_attachment.jpg
+201 −0 examples/magic_wand/LICENSE
+115 −0 examples/magic_wand/README.md
+0 −29 examples/magic_wand/accelerometer_handler.h
+0 −141 examples/magic_wand/arduino_accelerometer_handler.cpp
+0 −20 examples/magic_wand/arduino_main.cpp
+0 −57 examples/magic_wand/arduino_output_handler.cpp
+0 −38 examples/magic_wand/constants.h
+0 −72 examples/magic_wand/gesture_predictor.cpp
+0 −21 examples/magic_wand/gesture_predictor.h
+630 −46 examples/magic_wand/magic_wand.ino
+2,574 −1,645 examples/magic_wand/magic_wand_model_data.cpp
+2 −5 examples/magic_wand/magic_wand_model_data.h
+0 −37 examples/magic_wand/main_functions.h
+157 −0 examples/magic_wand/rasterize_stroke.cpp
+8 −10 examples/magic_wand/rasterize_stroke.h
+0 −220 examples/magic_wand/sparkfun_edge_accelerometer_handler.cpp
+0 −73 examples/magic_wand/sparkfun_edge_output_handler.cpp
+1 −0 examples/magic_wand/train/train_magic_wand_model.ipynb
+474 −0 examples/magic_wand/website/index.html
+80 −0 examples/micro_speech/README.md
+26 −35 examples/micro_speech/arduino_audio_provider.cpp
+11 −15 examples/micro_speech/arduino_command_responder.cpp
+3 −0 examples/micro_speech/audio_provider.h
+18 −11 examples/micro_speech/feature_provider.cpp
+2 −2 examples/micro_speech/micro_features_micro_features_generator.cpp
+0 −188 examples/micro_speech/micro_features_no_micro_features_data.cpp
+0 −23 examples/micro_speech/micro_features_no_micro_features_data.h
+0 −188 examples/micro_speech/micro_features_yes_micro_features_data.cpp
+0 −23 examples/micro_speech/micro_features_yes_micro_features_data.h
+40 −3 examples/micro_speech/micro_speech.ino
+18 −1 examples/micro_speech/recognize_commands.cpp
+1 −1 examples/micro_speech/recognize_commands.h
+0 −377 examples/micro_speech/sparkfun_edge_audio_provider.cpp
+0 −63 examples/micro_speech/sparkfun_edge_command_responder.cpp
+1 −0 scripts/test_arduino_library.sh
+4 −0 src/tensorflow/lite/c/builtin_op_data.h
+3 −3 src/tensorflow/lite/c/common.c
+1 −1 src/tensorflow/lite/c/common.h
+9 −0 src/tensorflow/lite/core/api/flatbuffer_conversions.cpp
+1 −0 src/tensorflow/lite/kernels/internal/common.h
+0 −23 src/tensorflow/lite/kernels/internal/reference/fully_connected.h
+85 −101 src/tensorflow/lite/micro/kernels/cmsis_nn/conv.cpp
+73 −87 src/tensorflow/lite/micro/kernels/cmsis_nn/depthwise_conv.cpp
+2 −1 src/tensorflow/lite/micro/kernels/concatenation.cpp
+0 −2 src/tensorflow/lite/micro/kernels/conv_common.cpp
+26 −9 src/tensorflow/lite/micro/kernels/logistic.cpp
+6 −6 src/tensorflow/lite/micro/kernels/tanh.cpp
+0 −4 src/tensorflow/lite/micro/memory_planner/greedy_memory_planner.cpp
+6 −1 src/tensorflow/lite/micro/micro_allocator.cpp
+8 −1 src/tensorflow/lite/micro/micro_error_reporter.h
+0 −2 src/tensorflow/lite/micro/micro_graph.cpp
+3 −0 src/tensorflow/lite/micro/micro_resource_variable.cpp
+5 −1 src/tensorflow/lite/micro/system_setup.cpp
+45 −10 src/tensorflow/lite/micro/test_helpers.cpp
+6 −0 src/tensorflow/lite/micro/test_helpers.h
+139 −10 src/tensorflow/lite/schema/schema_generated.h
+15 −0 src/third_party/cmsis/CMSIS/DSP/Include/dsp/matrix_functions.h
+206 −0 src/third_party/cmsis/CMSIS/DSP/Include/dsp/statistics_functions.h
+22 −23 src/third_party/cmsis/CMSIS/NN/Include/arm_nnsupportfunctions.h
+69 −67 src/third_party/cmsis/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_1_x_n_s8.c
+15 −35 src/third_party/cmsis/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_1x1_s8_fast.c
+43 −100 src/third_party/cmsis/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_s8.c
+9 −7 src/third_party/cmsis/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_wrapper_s8.c
+40 −22 src/third_party/cmsis/CMSIS/NN/Source/ConvolutionFunctions/arm_depthwise_conv_s8.c
+6 −4 src/third_party/cmsis/CMSIS/NN/Source/ConvolutionFunctions/arm_depthwise_conv_wrapper_s8.c
+11 −3 src/third_party/cmsis/CMSIS/NN/Source/ConvolutionFunctions/arm_nn_mat_mult_kernel_s8_s16.c
+87 −66 src/third_party/cmsis/CMSIS/NN/Source/NNSupportFunctions/arm_nn_mat_mul_core_4x_s8.c
+68 −0 src/third_party/flatbuffers/include/flatbuffers/allocator.h
+243 −0 src/third_party/flatbuffers/include/flatbuffers/array.h
+59 −12 src/third_party/flatbuffers/include/flatbuffers/base.h
+142 −0 src/third_party/flatbuffers/include/flatbuffers/buffer.h
+53 −0 src/third_party/flatbuffers/include/flatbuffers/buffer_ref.h
+58 −0 src/third_party/flatbuffers/include/flatbuffers/default_allocator.h
+114 −0 src/third_party/flatbuffers/include/flatbuffers/detached_buffer.h
+1,187 −0 src/third_party/flatbuffers/include/flatbuffers/flatbuffer_builder.h
+28 −2,565 src/third_party/flatbuffers/include/flatbuffers/flatbuffers.h
+333 −44 src/third_party/flatbuffers/include/flatbuffers/flexbuffers.h
+297 −237 src/third_party/flatbuffers/include/flatbuffers/stl_emulation.h
+64 −0 src/third_party/flatbuffers/include/flatbuffers/string.h
+53 −0 src/third_party/flatbuffers/include/flatbuffers/struct.h
+166 −0 src/third_party/flatbuffers/include/flatbuffers/table.h
+20 −16 src/third_party/flatbuffers/include/flatbuffers/util.h
+370 −0 src/third_party/flatbuffers/include/flatbuffers/vector.h
+271 −0 src/third_party/flatbuffers/include/flatbuffers/vector_downward.h
+280 −0 src/third_party/flatbuffers/include/flatbuffers/verifier.h