I am trying to make a face recognition attendance monitoring system using an algorithm called LBPH. Is it possible to make tensorflow load the trained model from LBPH? I am new to tensorflow so I am sorry if I do not understand a lot of stuff.
Why would you want to load LBPH model with Tensorflow?
I wanted to implement LBPH model to tensorflow because I wanted to be able to utilize the LBPH to android studio, and from what I have seen on websites. Tensorflow is only one I have seen that can be used on android studio.
Tensorflow supports the following input model formats
- SavedModel (recommended): A TensorFlow model saved as a set of files on disk.
- Keras model: A model created using the high level Keras API.
- Keras H5 format: A light-weight alternative to SavedModel format supported by Keras API.
- Models built from concrete functions: A model created using the low level TensorFlow API.
Once you save the LBPH model in any of the above formats then you can use tf.lite.TFLiteConverter to convert model to lite.
Thank you!