I've recently discovered that apple core motion data (accelerometer, gyroscope etc) can be used to create learning models. The link below shows an example:
https://github.com/apple/turicreate/blob/master/userguide/activity_classifier/introduction.md
This example uses data from a large dataset (HAPT). In my situation I'm the creator of my own dataset using recordings of core motion data while performing different activities (i.e. jumping, walking, sitting). The next step is to import my dataset in turi to create a model. How this can be achieved? Could anyone provide a list of steps to follow?
Thank you
Ideally, you would have recorded your motion data into some standard format. Let's assume it is in CSV format.
You can read the file using any file reader. To simplify your life, pandas or sframe may rescue you.