Skip to content

Commit 603dfd1

Browse files
committed
renamed to TfLite
1 parent 8ac3209 commit 603dfd1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/EloquentTinyML.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ namespace Eloquent {
1919
* @tparam tensorArenaSize how much memory to allocate to the tensors
2020
*/
2121
template<size_t inputSize, size_t outputSize, size_t tensorArenaSize>
22-
class TinyML {
22+
class TfLite {
2323
public:
2424
/**
2525
* Contructor
2626
* @param modelData a model as exported by tinymlgen
2727
*/
28-
TinyML(unsigned char *modelData) {
28+
TfLite(unsigned char *modelData) {
2929
static tflite::MicroErrorReporter microReporter;
3030
static tflite::ops::micro::AllOpsResolver resolver;
3131

@@ -101,4 +101,4 @@ namespace Eloquent {
101101
const tflite::Model *model;
102102
};
103103
}
104-
}
104+
}

0 commit comments

Comments
 (0)