TianzhongSong / Real-Time-Action-Recognition

Real-time pose estimation and action recognition
408 stars 126 forks source link

how to run the old branch code #10

Open hemanthkumar3111 opened 6 years ago

hemanthkumar3111 commented 6 years ago

Hi

I am trying few things for the action recognition for my academic purpose and my area of study is 3DCNN and in your old branch code you have used the 3DCNN as well.

I have one Query which file I should run to execute the source code (There is no run.py file)

Thanks in Advance !!!!!

Regards Akhil

TianzhongSong commented 6 years ago

@hemanthkumar3111 Just run 'uiTest.py'. You may need this pre-trained SSD300 weight file.

akhilgupta0221 commented 6 years ago

@TianzhongSong : It seems you have done a lot of work with data augmentation/preproccesing which is essential for any beginner to start with. In my case I want to train the model with my own dataset can you please tell me how to how to build train.txt and test.txt. In short I would to understand the training part to recognise some new actions.

Regards Akhil

TianzhongSong commented 6 years ago

@akhilgupta0221 : Hi, the training part is similar with C3D, implementation details (include preparing data and training ) can be found in this repo: C3D-keras

akhilgupta0221 commented 6 years ago

@TianzhongSong: Thanks I will check