Skip to content

chihiro-yabuta/predict-dance

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What is predict-dance ?

predict-dance is enable to decide which videos belong to [elegant, dance, other].

\resizegraybinarylimit
elegant
dance
other
you will get result of video prediction.

flowchart

How do I start ?

plz install docker desktop first.
after that, you can start to type default Makefile command.

make

I have already prepared commands.
plz check Makefile.
you can develop in docker container as well.

when you finish to load, you probably can see directories.
I show you tree to understand easily.

.
├── archive
│   ├── *.mp4 (pred video)
├── out
│   ├── video (stock visible pred)
│   │   ├── cam
│   │   │   ├── *.mp4
│   │   ├── edited
│   │   │   ├── *.mp4
│   │   ├── removed
│   │   │   ├── *.mp4
│   └── flow (stock visible pred detail)
│   │   ├── ...
│   └── src (stock data)
│   │   ├── edited
│   │   │   ├── *.pkl
│   │   ├── removed
│   │   │   ├── *.pkl
│   ├── model (stock overall data)
│   │   ├── *.pkl
├── src
│   ├── ...
├── test
│   ├── *.mp4 (test video)
└── video
    ├── *.mp4 (study video)

you can prepare data to predict to type this command.

make dp

you can execute prediction to type these commands.

python main.py
python test.py

you can modify code everything. plz read my code and improve better!
I show you recent nn and old repos for help. pre1 pre2

flow chart

flowchart