-
Notifications
You must be signed in to change notification settings - Fork 11
added Neural Network as alternative for TensorFlow Lite for Microcontrollers #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: features/nnom
Are you sure you want to change the base?
Conversation
b054727
to
de513a4
Compare
8878e5a
to
c1067e9
Compare
@@ -848,6 +865,22 @@ | |||
automl_available: False | |||
model: library.transform | |||
|
|||
- fields: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this
def neural_network(): | ||
""" | ||
The Neural Network uses Tensorflow Lite for Microcontrollers, an inference engine | ||
from Google optimized run machine learning models on embedded devices. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
update this text to be more generic. This is strictly for training. The inference engine can be deployed to NNoM or TFliteMicro
@@ -233,6 +232,9 @@ def create_sml_classification_result_info(self, models_data): | |||
model_fill["TensorFlow Lite for Microcontrollers"] = ( | |||
"{\n\ttf_micro_model_results_object(kb_models[model_index].classifier_id, (model_results_t *)model_results);\n}" | |||
) | |||
model_fill["Neural Network"] = ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs an if statement that switchest between the two based on the inference engine selected
No description provided.