Daniel Konegen / MNIST_example

Dependencies:   mbed-os

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main_functions.h Source File

main_functions.h

00001 #ifndef TENSORFLOW_LITE_MAIN_FUNCTIONS_H_
00002 #define TENSORFLOW_LITE_MAIN_FUNCTIONS_H_
00003 
00004 // Initializes all data needed for the example. The name is important, and needs
00005 // to be setup() for Arduino compatibility.
00006 void setup();
00007 
00008 // Runs one iteration of data gathering and inference. This should be called
00009 // repeatedly from the application code. The name needs to be loop() for Arduino
00010 // compatibility.
00011 void loop();
00012 
00013 #endif  // TENSORFLOW_LITE_MAIN_FUNCTIONS_H_