We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7bfafe commit 8b799d7Copy full SHA for 8b799d7
examples/SineExample/SineExample.ino
@@ -7,7 +7,7 @@
7
// in future projects you may need to tweek this value: it's a trial and error process
8
#define TENSOR_ARENA_SIZE 2*1024
9
10
-Eloquent::TinyML::TinyML<NUMBER_OF_INPUTS, NUMBER_OF_OUTPUTS, TENSOR_ARENA_SIZE> ml(sine_model);
+Eloquent::TinyML::TfLite<NUMBER_OF_INPUTS, NUMBER_OF_OUTPUTS, TENSOR_ARENA_SIZE> ml(sine_model);
11
12
13
void setup() {
@@ -28,4 +28,4 @@ void loop() {
28
Serial.print("\t predicted: ");
29
Serial.println(predicted);
30
delay(1000);
31
-}
+}
0 commit comments