Can tensorflow load models from other algorithms?

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

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!