├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── components └── tfmicro │ ├── CMakeLists.txt │ ├── tensorflow │ ├── core │ │ └── public │ │ │ └── version.h │ └── lite │ │ ├── c │ │ ├── builtin_op_data.h │ │ ├── common.c │ │ └── common.h │ │ ├── core │ │ └── api │ │ │ ├── error_reporter.cc │ │ │ ├── error_reporter.h │ │ │ ├── flatbuffer_conversions.cc │ │ │ ├── flatbuffer_conversions.h │ │ │ ├── op_resolver.cc │ │ │ ├── op_resolver.h │ │ │ ├── tensor_utils.cc │ │ │ └── tensor_utils.h │ │ ├── experimental │ │ └── ruy │ │ │ └── profiler │ │ │ └── instrumentation.h │ │ ├── kernels │ │ ├── internal │ │ │ ├── common.h │ │ │ ├── compatibility.h │ │ │ ├── optimized │ │ │ │ └── neon_check.h │ │ │ ├── quantization_util.cc │ │ │ ├── quantization_util.h │ │ │ ├── reference │ │ │ │ ├── add.h │ │ │ │ ├── arg_min_max.h │ │ │ │ ├── binary_function.h │ │ │ │ ├── ceil.h │ │ │ │ ├── comparisons.h │ │ │ │ ├── concatenation.h │ │ │ │ ├── conv.h │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ ├── dequantize.h │ │ │ │ ├── floor.h │ │ │ │ ├── fully_connected.h │ │ │ │ ├── integer_ops │ │ │ │ │ ├── add.h │ │ │ │ │ ├── conv.h │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── mul.h │ │ │ │ │ ├── pooling.h │ │ │ │ │ └── softmax.h │ │ │ │ ├── logistic.h │ │ │ │ ├── maximum_minimum.h │ │ │ │ ├── mul.h │ │ │ │ ├── neg.h │ │ │ │ ├── pad.h │ │ │ │ ├── pooling.h │ │ │ │ ├── prelu.h │ │ │ │ ├── process_broadcast_shapes.h │ │ │ │ ├── quantize.h │ │ │ │ ├── reduce.h │ │ │ │ ├── requantize.h │ │ │ │ ├── round.h │ │ │ │ ├── softmax.h │ │ │ │ └── strided_slice.h │ │ │ ├── round.h │ │ │ ├── strided_slice_logic.h │ │ │ ├── tensor.h │ │ │ ├── tensor_ctypes.h │ │ │ └── types.h │ │ ├── kernel_util.cc │ │ ├── kernel_util.h │ │ ├── op_macros.h │ │ └── padding.h │ │ ├── micro │ │ ├── compatibility.h │ │ ├── debug_log.cc │ │ ├── debug_log.h │ │ ├── debug_log_numbers.cc │ │ ├── debug_log_numbers.h │ │ ├── kernels │ │ │ ├── activation_utils.h │ │ │ ├── activations.cc │ │ │ ├── add.cc │ │ │ ├── all_ops_resolver.cc │ │ │ ├── all_ops_resolver.h │ │ │ ├── arg_min_max.cc │ │ │ ├── ceil.cc │ │ │ ├── comparisons.cc │ │ │ ├── concatenation.cc │ │ │ ├── conv.cc │ │ │ ├── depthwise_conv.cc │ │ │ ├── dequantize.cc │ │ │ ├── elementwise.cc │ │ │ ├── floor.cc │ │ │ ├── fully_connected.cc │ │ │ ├── logical.cc │ │ │ ├── logistic.cc │ │ │ ├── maximum_minimum.cc │ │ │ ├── micro_ops.h │ │ │ ├── micro_utils.h │ │ │ ├── mul.cc │ │ │ ├── neg.cc │ │ │ ├── pack.cc │ │ │ ├── pad.cc │ │ │ ├── pooling.cc │ │ │ ├── prelu.cc │ │ │ ├── quantize.cc │ │ │ ├── reduce.cc │ │ │ ├── reshape.cc │ │ │ ├── round.cc │ │ │ ├── softmax.cc │ │ │ ├── split.cc │ │ │ ├── strided_slice.cc │ │ │ ├── svdf.cc │ │ │ └── unpack.cc │ │ ├── memory_helpers.cc │ │ ├── memory_helpers.h │ │ ├── memory_planner │ │ │ ├── greedy_memory_planner.cc │ │ │ ├── greedy_memory_planner.h │ │ │ ├── linear_memory_planner.cc │ │ │ ├── linear_memory_planner.h │ │ │ └── memory_planner.h │ │ ├── micro_allocator.cc │ │ ├── micro_allocator.h │ │ ├── micro_error_reporter.cc │ │ ├── micro_error_reporter.h │ │ ├── micro_interpreter.cc │ │ ├── micro_interpreter.h │ │ ├── micro_mutable_op_resolver.h │ │ ├── micro_optional_debug_tools.cc │ │ ├── micro_optional_debug_tools.h │ │ ├── micro_utils.cc │ │ ├── micro_utils.h │ │ ├── simple_memory_allocator.cc │ │ ├── simple_memory_allocator.h │ │ ├── test_helpers.cc │ │ ├── test_helpers.h │ │ └── testing │ │ │ ├── micro_test.h │ │ │ └── test_utils.h │ │ ├── schema │ │ └── schema_generated.h │ │ ├── string_type.h │ │ ├── string_util.h │ │ ├── type_to_tflitetype.h │ │ └── version.h │ └── third_party │ ├── flatbuffers │ ├── LICENSE.txt │ └── include │ │ └── flatbuffers │ │ ├── base.h │ │ ├── flatbuffers.h │ │ └── stl_emulation.h │ ├── gemmlowp │ ├── LICENSE │ ├── fixedpoint │ │ ├── fixedpoint.h │ │ └── fixedpoint_sse.h │ └── internal │ │ └── detect_platform.h │ └── kissfft │ ├── COPYING │ ├── _kiss_fft_guts.h │ ├── kiss_fft.h │ └── tools │ └── kiss_fftr.h ├── docs ├── Project_diagram.jpg └── hardware │ ├── ESP32_MCU.JPG │ ├── SPI RAM and Flash.JPG │ ├── SPI_FLASH.JPG │ ├── esp32_both_sides.jpg │ ├── on_boot_log.txt │ ├── pinout.jpg │ └── size.png ├── main ├── CMakeLists.txt ├── component.mk ├── include │ ├── main_functions.h │ ├── model_data.h │ └── model_operations.h ├── main.cc ├── main_functions.cc ├── model_data.cc └── model_operations.cc ├── python ├── Test_TFLite_Micro.ipynb ├── labels.txt ├── model.tflite └── test_images_14x14 │ ├── ankle boot_13.jpg │ ├── ankle boot_16.jpg │ ├── ankle boot_18.jpg │ ├── ankle boot_49.jpg │ ├── bag_15.jpg │ ├── bag_24.jpg │ ├── bag_25.jpg │ ├── bag_29.jpg │ ├── bag_34.jpg │ ├── bag_5.jpg │ ├── bag_7.jpg │ ├── coat_27.jpg │ ├── coat_35.jpg │ ├── coat_42.jpg │ ├── coat_8.jpg │ ├── dress_1.jpg │ ├── dress_11.jpg │ ├── dress_12.jpg │ ├── dress_21.jpg │ ├── dress_45.jpg │ ├── dress_46.jpg │ ├── pullover_23.jpg │ ├── pullover_26.jpg │ ├── pullover_36.jpg │ ├── pullover_39.jpg │ ├── pullover_48.jpg │ ├── sandal_17.jpg │ ├── sandal_20.jpg │ ├── sandal_28.jpg │ ├── sandal_32.jpg │ ├── sandal_47.jpg │ ├── shirt_3.jpg │ ├── shirt_33.jpg │ ├── shirt_38.jpg │ ├── shirt_4.jpg │ ├── shirt_6.jpg │ ├── shirt_9.jpg │ ├── sneaker_10.jpg │ ├── sneaker_19.jpg │ ├── sneaker_22.jpg │ ├── sneaker_31.jpg │ ├── sneaker_37.jpg │ ├── sneaker_40.jpg │ ├── sneaker_44.jpg │ ├── t-shirt_top_41.jpg │ ├── t-shirt_top_43.jpg │ ├── trouser_0.jpg │ ├── trouser_14.jpg │ ├── trouser_2.jpg │ └── trouser_30.jpg └── sdkconfig /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/README.md -------------------------------------------------------------------------------- /components/tfmicro/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/CMakeLists.txt -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/core/public/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/core/public/version.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/c/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/c/builtin_op_data.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/c/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/c/common.c -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/c/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/c/common.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/core/api/error_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/core/api/error_reporter.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/core/api/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/core/api/error_reporter.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/core/api/flatbuffer_conversions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/core/api/flatbuffer_conversions.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/core/api/flatbuffer_conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/core/api/flatbuffer_conversions.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/core/api/op_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/core/api/op_resolver.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/core/api/op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/core/api/op_resolver.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/core/api/tensor_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/core/api/tensor_utils.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/core/api/tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/core/api/tensor_utils.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/experimental/ruy/profiler/instrumentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/experimental/ruy/profiler/instrumentation.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/common.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/compatibility.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/optimized/neon_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/optimized/neon_check.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/quantization_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/quantization_util.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/quantization_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/quantization_util.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/add.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/arg_min_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/arg_min_max.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/binary_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/binary_function.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/ceil.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/comparisons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/comparisons.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/concatenation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/concatenation.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/conv.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/depthwiseconv_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/depthwiseconv_float.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/depthwiseconv_uint8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/depthwiseconv_uint8.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/dequantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/dequantize.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/floor.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/fully_connected.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/add.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/depthwise_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/depthwise_conv.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/fully_connected.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/integer_ops/softmax.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/logistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/logistic.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/maximum_minimum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/maximum_minimum.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/mul.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/neg.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/pad.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/pooling.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/prelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/prelu.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/process_broadcast_shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/process_broadcast_shapes.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/quantize.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/reduce.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/requantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/requantize.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/round.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/softmax.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/reference/strided_slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/reference/strided_slice.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/round.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/strided_slice_logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/strided_slice_logic.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/tensor.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/tensor_ctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/tensor_ctypes.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/internal/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/internal/types.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/kernel_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/kernel_util.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/kernel_util.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/op_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/op_macros.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/kernels/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/kernels/padding.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/compatibility.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/debug_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/debug_log.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/debug_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/debug_log.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/debug_log_numbers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/debug_log_numbers.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/debug_log_numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/debug_log_numbers.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/activation_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/activation_utils.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/activations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/activations.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/add.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/all_ops_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/all_ops_resolver.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/all_ops_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/all_ops_resolver.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/arg_min_max.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/arg_min_max.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/ceil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/ceil.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/comparisons.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/comparisons.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/concatenation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/concatenation.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/conv.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/depthwise_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/depthwise_conv.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/dequantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/dequantize.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/elementwise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/elementwise.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/floor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/floor.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/fully_connected.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/fully_connected.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/logical.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/logical.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/logistic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/logistic.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/maximum_minimum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/maximum_minimum.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/micro_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/micro_ops.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/micro_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/micro_utils.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/mul.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/neg.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/pack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/pack.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/pad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/pad.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/pooling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/pooling.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/prelu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/prelu.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/quantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/quantize.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/reduce.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/reshape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/reshape.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/round.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/round.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/softmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/softmax.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/split.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/strided_slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/strided_slice.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/svdf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/svdf.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/kernels/unpack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/kernels/unpack.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/memory_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/memory_helpers.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/memory_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/memory_helpers.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/memory_planner/greedy_memory_planner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/memory_planner/greedy_memory_planner.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/memory_planner/linear_memory_planner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/memory_planner/linear_memory_planner.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/memory_planner/linear_memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/memory_planner/linear_memory_planner.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/memory_planner/memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/memory_planner/memory_planner.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/micro_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/micro_allocator.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/micro_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/micro_allocator.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/micro_error_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/micro_error_reporter.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/micro_error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/micro_error_reporter.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/micro_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/micro_interpreter.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/micro_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/micro_interpreter.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/micro_mutable_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/micro_mutable_op_resolver.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/micro_optional_debug_tools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/micro_optional_debug_tools.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/micro_optional_debug_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/micro_optional_debug_tools.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/micro_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/micro_utils.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/micro_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/micro_utils.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/simple_memory_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/simple_memory_allocator.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/simple_memory_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/simple_memory_allocator.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/test_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/test_helpers.cc -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/test_helpers.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/testing/micro_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/testing/micro_test.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/micro/testing/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/micro/testing/test_utils.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/schema/schema_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/schema/schema_generated.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/string_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/string_type.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/string_util.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/type_to_tflitetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/type_to_tflitetype.h -------------------------------------------------------------------------------- /components/tfmicro/tensorflow/lite/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/tensorflow/lite/version.h -------------------------------------------------------------------------------- /components/tfmicro/third_party/flatbuffers/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/third_party/flatbuffers/LICENSE.txt -------------------------------------------------------------------------------- /components/tfmicro/third_party/flatbuffers/include/flatbuffers/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/third_party/flatbuffers/include/flatbuffers/base.h -------------------------------------------------------------------------------- /components/tfmicro/third_party/flatbuffers/include/flatbuffers/flatbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/third_party/flatbuffers/include/flatbuffers/flatbuffers.h -------------------------------------------------------------------------------- /components/tfmicro/third_party/flatbuffers/include/flatbuffers/stl_emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/third_party/flatbuffers/include/flatbuffers/stl_emulation.h -------------------------------------------------------------------------------- /components/tfmicro/third_party/gemmlowp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/third_party/gemmlowp/LICENSE -------------------------------------------------------------------------------- /components/tfmicro/third_party/gemmlowp/fixedpoint/fixedpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/third_party/gemmlowp/fixedpoint/fixedpoint.h -------------------------------------------------------------------------------- /components/tfmicro/third_party/gemmlowp/fixedpoint/fixedpoint_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/third_party/gemmlowp/fixedpoint/fixedpoint_sse.h -------------------------------------------------------------------------------- /components/tfmicro/third_party/gemmlowp/internal/detect_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/third_party/gemmlowp/internal/detect_platform.h -------------------------------------------------------------------------------- /components/tfmicro/third_party/kissfft/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/third_party/kissfft/COPYING -------------------------------------------------------------------------------- /components/tfmicro/third_party/kissfft/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/third_party/kissfft/_kiss_fft_guts.h -------------------------------------------------------------------------------- /components/tfmicro/third_party/kissfft/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/third_party/kissfft/kiss_fft.h -------------------------------------------------------------------------------- /components/tfmicro/third_party/kissfft/tools/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/components/tfmicro/third_party/kissfft/tools/kiss_fftr.h -------------------------------------------------------------------------------- /docs/Project_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/docs/Project_diagram.jpg -------------------------------------------------------------------------------- /docs/hardware/ESP32_MCU.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/docs/hardware/ESP32_MCU.JPG -------------------------------------------------------------------------------- /docs/hardware/SPI RAM and Flash.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/docs/hardware/SPI RAM and Flash.JPG -------------------------------------------------------------------------------- /docs/hardware/SPI_FLASH.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/docs/hardware/SPI_FLASH.JPG -------------------------------------------------------------------------------- /docs/hardware/esp32_both_sides.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/docs/hardware/esp32_both_sides.jpg -------------------------------------------------------------------------------- /docs/hardware/on_boot_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/docs/hardware/on_boot_log.txt -------------------------------------------------------------------------------- /docs/hardware/pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/docs/hardware/pinout.jpg -------------------------------------------------------------------------------- /docs/hardware/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/docs/hardware/size.png -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/include/main_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/main/include/main_functions.h -------------------------------------------------------------------------------- /main/include/model_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/main/include/model_data.h -------------------------------------------------------------------------------- /main/include/model_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/main/include/model_operations.h -------------------------------------------------------------------------------- /main/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/main/main.cc -------------------------------------------------------------------------------- /main/main_functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/main/main_functions.cc -------------------------------------------------------------------------------- /main/model_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/main/model_data.cc -------------------------------------------------------------------------------- /main/model_operations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/main/model_operations.cc -------------------------------------------------------------------------------- /python/Test_TFLite_Micro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/Test_TFLite_Micro.ipynb -------------------------------------------------------------------------------- /python/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/labels.txt -------------------------------------------------------------------------------- /python/model.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/model.tflite -------------------------------------------------------------------------------- /python/test_images_14x14/ankle boot_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/ankle boot_13.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/ankle boot_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/ankle boot_16.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/ankle boot_18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/ankle boot_18.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/ankle boot_49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/ankle boot_49.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/bag_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/bag_15.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/bag_24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/bag_24.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/bag_25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/bag_25.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/bag_29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/bag_29.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/bag_34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/bag_34.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/bag_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/bag_5.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/bag_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/bag_7.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/coat_27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/coat_27.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/coat_35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/coat_35.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/coat_42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/coat_42.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/coat_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/coat_8.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/dress_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/dress_1.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/dress_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/dress_11.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/dress_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/dress_12.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/dress_21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/dress_21.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/dress_45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/dress_45.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/dress_46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/dress_46.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/pullover_23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/pullover_23.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/pullover_26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/pullover_26.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/pullover_36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/pullover_36.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/pullover_39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/pullover_39.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/pullover_48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/pullover_48.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/sandal_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/sandal_17.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/sandal_20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/sandal_20.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/sandal_28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/sandal_28.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/sandal_32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/sandal_32.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/sandal_47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/sandal_47.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/shirt_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/shirt_3.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/shirt_33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/shirt_33.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/shirt_38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/shirt_38.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/shirt_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/shirt_4.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/shirt_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/shirt_6.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/shirt_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/shirt_9.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/sneaker_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/sneaker_10.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/sneaker_19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/sneaker_19.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/sneaker_22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/sneaker_22.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/sneaker_31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/sneaker_31.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/sneaker_37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/sneaker_37.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/sneaker_40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/sneaker_40.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/sneaker_44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/sneaker_44.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/t-shirt_top_41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/t-shirt_top_41.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/t-shirt_top_43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/t-shirt_top_43.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/trouser_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/trouser_0.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/trouser_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/trouser_14.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/trouser_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/trouser_2.jpg -------------------------------------------------------------------------------- /python/test_images_14x14/trouser_30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/python/test_images_14x14/trouser_30.jpg -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-goldhands/ESP32_Fashion_MNIST/HEAD/sdkconfig --------------------------------------------------------------------------------