Daniel Konegen / MNIST_example

Dependencies:   mbed-os

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers output_handler.h Source File

output_handler.h

00001 #ifndef TENSORFLOW_LITE_OUTPUT_HANDLER_H_
00002 #define TENSORFLOW_LITE_OUTPUT_HANDLER_H_
00003 
00004 #include "./../../../../c/c_api_internal.h"
00005 #include "./../../../../experimental/micro/micro_error_reporter.h"
00006 
00007 // Called by the main loop to produce some output based on the x and y values
00008 void HandleOutput(tflite::ErrorReporter* error_reporter, float x_value,
00009                   float y_value);
00010 
00011 #endif  // TENSORFLOW_LITE_OUTPUT_HANDLER_H_