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 8ac3209 commit 603dfd1Copy full SHA for 603dfd1
src/EloquentTinyML.h
@@ -19,13 +19,13 @@ namespace Eloquent {
19
* @tparam tensorArenaSize how much memory to allocate to the tensors
20
*/
21
template<size_t inputSize, size_t outputSize, size_t tensorArenaSize>
22
- class TinyML {
+ class TfLite {
23
public:
24
/**
25
* Contructor
26
* @param modelData a model as exported by tinymlgen
27
28
- TinyML(unsigned char *modelData) {
+ TfLite(unsigned char *modelData) {
29
static tflite::MicroErrorReporter microReporter;
30
static tflite::ops::micro::AllOpsResolver resolver;
31
@@ -101,4 +101,4 @@ namespace Eloquent {
101
const tflite::Model *model;
102
};
103
}
104
-}
+}
0 commit comments