espressif / esp-dl

Espressif deep-learning library for AIoT applications
MIT License
548 stars 118 forks source link

Import pre-trained model #34

Closed noukee closed 3 years ago

noukee commented 3 years ago

I want to make enroll from profile picture saved on database. My approach sends "face-id" by mqtt and make recognition in the backend with a pre-trained model.

In Tensorflow is available MobileNetV2 model, how can I load this pre-trained model?

TiramisuJ commented 3 years ago

First, you should know the structure and forward process of the model, and then convert the parameters of each layer into NPY files. Here is a tutorial.