Hello all:
Apologizes for such basic questions but I am stuck and looking for a different perspective:
Here are my questions:
-
Can I train a .tflite model in Python on my laptop and deploy it in an iphone swift iOS app?
-
The python example I followed trains and tests the model with input as a DataFrame. It takes one row at a time from a csv file and passes that to the model. Here is the link to the python example: Human Pose Classification with MoveNet and TensorFlow Lite
-
In swift ios, (link here: examples/lite/examples/pose_estimation/ios at master · tensorflow/examples · GitHub) the interpreter.copy expects type Data and does not accept DataFrame.
-
Are there any examples out there or
-
best practices I need to be using or
-
Any direction/hints you could offer?