Nice! That means you've successfully:
yolo11m-pose.pt
)yolo11m-pose.onnx
)yolo11m-pose_tf/
)Depending on your goal, you’ve got a few options:
You can now load and run it like this:
import tensorflow as tf
model = tf.saved_model.load("yolo11m-pose_tf")
# Use model.signatures to see available functions
You can convert it to TFLite:
import tensorflow as tf
converter = tf.lite.TFLiteConverter.from_saved_model("yolo11m-pose_tf")
tflite_model = converter.convert()
with open("yolo11m-pose.tflite", "wb") as f:
f.write(tflite_model)
You can now run this .tflite
model on Android/iOS with TensorFlow Lite.
You can plug this TFLite model into your OpenCV + MediaPipe or TensorFlow Lite runtime to get keypoints and calculate distances.
Let me know which direction you're going — mobile deployment? Web-based inference? Real-time webcam overlay? I can help wire that part up.