Skip to content
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

Feature/Create export_face_landmark.py #11246

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions official/vision/serving/export_face_landmark.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import tensorflow as tf

def convert_tflite_to_pb(tflite_model_path, pb_model_path):
# Load the TFLite model
with open(tflite_model_path, 'rb') as f:
tflite_model = f.read()

# Convert the TFLite model to a TensorFlow model
converter = tf.lite.TFLiteConverter.from_saved_model(tflite_model)
tf_model = converter.convert()

# Save the TensorFlow model as a .pb file
tf.saved_model.save(tf_model, pb_model_path)

if __name__ == "__main__":
tflite_model_path = "face_landmark.tflite"
pb_model_path = "face_landmark.pb"
convert_tflite_to_pb(tflite_model_path, pb_model_path)
Loading