Skip to content

Commit 8b799d7

Browse files
committed
fix typo
1 parent e7bfafe commit 8b799d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/SineExample/SineExample.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// in future projects you may need to tweek this value: it's a trial and error process
88
#define TENSOR_ARENA_SIZE 2*1024
99

10-
Eloquent::TinyML::TinyML<NUMBER_OF_INPUTS, NUMBER_OF_OUTPUTS, TENSOR_ARENA_SIZE> ml(sine_model);
10+
Eloquent::TinyML::TfLite<NUMBER_OF_INPUTS, NUMBER_OF_OUTPUTS, TENSOR_ARENA_SIZE> ml(sine_model);
1111

1212

1313
void setup() {
@@ -28,4 +28,4 @@ void loop() {
2828
Serial.print("\t predicted: ");
2929
Serial.println(predicted);
3030
delay(1000);
31-
}
31+
}

0 commit comments

Comments
 (0)