Human action recognition is a very interesting problem in computer vision and machine learning. There are two popular approaches to this problem,that is,still image action recognition and video action recognition. In still image action recognition, we can fine-tune a pre-trained model from ImageNet and perform a classification of the actions based on the static image. You can review the previous chapters for more information. In this chapter, we will create a model that can recognize human action from videos. At the end of the chapter, we will show you how to use multiple GPUs to speed up the training process.
Overview of the application
Datasets
There are many available datasets that we can use in the training process, as...