Daniel Konegen / MNIST_example

Dependencies:   mbed-os

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers output_handler.cc Source File

output_handler.cc

00001 #include "./output_handler.h"
00002 
00003 
00004 void HandleOutput(tflite::ErrorReporter* error_reporter, float x_value,
00005                   float y_value) {
00006 
00007   // Log the current X and Y values
00008   error_reporter->Report("x_value: %f, y_value: %f\n", x_value, y_value);
00009 }