Code Monkey home page Code Monkey logo

human-activity-recognition's Introduction

Human-Activity-Recognition with posenet

Classifying human activities from pose by posenet model

Main aim:

The main aim of this repository is to classify few human activities based on the pose generated by posnet model.

Requirements:

1)Keras 2.0
2)opencv-python 3)posenet-python port :https://github.com/atomicbits/posenet-python The above posenet-python port was slightly changed and then used for our repository. so all the pre-requisites of the above repository are also required for this repository like tfjs-totf converter(https://github.com/patlevin/tfjs-to-tf).

About posenet:

Posenet, a deep learning model has shown state of art results in recognising pose. It detects 17 keypoints of human body to estimate the human pose. for more details of posenet...check out this link : https://medium.com/tensorflow/real-time-human-pose-estimation-in-the-browser-with-tensorflow-js-7dd0bc881cd5

Data:

The data which I used in this repository was generated from UCF101_data(Link is provided below) by running through the posenet model.I have taken 20 frames per datapoint and then ran it through the posenet model and obtained the heatmaps.So the data used is of shape (m,20,16,17,21) where m is the training examples you are going to extract from UCF101 dataset ,20 is the number of frames we are considering to create the dataset and (16 ,17 ,21) is the shape of heatmap.

Link for the data: https://www.crcv.ucf.edu/data/UCF101/UCF101.rar

Main Idea:

The main idea is to train a model of few convlstm2d layers.The model was trained on focal loss to deal with class imbalance.Dropouts are also used to get rid of overfitting(as the model has high number of parameters ,there is a high chance of overfitting!).

Training:

The training was done in google colab(with GPU accelerator).And it took aroung 8hrs to fully get trained.The f1 score is around 0.92!
The confusion matrix is plotted below:

"confusion_matrix"

human-activity-recognition's People

Contributors

mano3-1 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

piramid

human-activity-recognition's Issues

Failed to convert a NumPy array to a Tensor

Hello @mano3-1!
Thank you to share your code, it's a really interesting application.
I'm trying to reproduce your process, but I'm having this error in colab, when function model.fit() is called inside the execution of --> test = train(fnames ,dict_ ,model)

ValueError: Failed to convert a NumPy array to a Tensor (Unsupported object type numpy.ndarray).

I have tried to add .astype('object') or .astype('float32') when load the values into an array previous to train, but without success. Dimensions of the X ndarray are correct, as you can see here, but i still have the problem:

print(type(X)) --> <class 'numpy.ndarray'>
print(len(X)) #folders --> 51
print(len(X[0])) #frame --> 20
print(len(X[0][0])) #heatmap -->16
print(len(X[0][0][0])) #heatmap --> 21
print(len(X[0][0][0][0])) #heatmap --> 17
print(X.size) --> 1020 # 51 train folders * 20 frames

Did you have this problem before?
Thanks in advance!
nice work,
Mario

Extra info:
I'm working on pose_detection.ipynb notebook after generating succesfully the folders with .npy files of classes "Punch" and "WalkingWithDog"

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.