├── .gitignore ├── README.md ├── config ├── rnn_net.cfg └── train.cfg ├── data_load.py ├── data_load_abandon.py ├── dataset ├── README.md ├── kalman │ └── README.md ├── raw │ └── README.md ├── test │ └── README.md └── train │ └── README.md ├── model ├── README.md ├── checkpoint ├── model.ckpt.data-00000-of-00001 ├── model.ckpt.index └── model.ckpt.meta ├── result ├── rnn.gif └── rnn.mp4 ├── run_rnn.py ├── train_logs └── README.md ├── train_rnn.py ├── utils.py └── 读我.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/README.md -------------------------------------------------------------------------------- /config/rnn_net.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/config/rnn_net.cfg -------------------------------------------------------------------------------- /config/train.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/config/train.cfg -------------------------------------------------------------------------------- /data_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/data_load.py -------------------------------------------------------------------------------- /data_load_abandon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/data_load_abandon.py -------------------------------------------------------------------------------- /dataset/README.md: -------------------------------------------------------------------------------- 1 | 存放数据集 -------------------------------------------------------------------------------- /dataset/kalman/README.md: -------------------------------------------------------------------------------- 1 | put data here 2 | -------------------------------------------------------------------------------- /dataset/raw/README.md: -------------------------------------------------------------------------------- 1 | put data here 2 | -------------------------------------------------------------------------------- /dataset/test/README.md: -------------------------------------------------------------------------------- 1 | put data here 2 | -------------------------------------------------------------------------------- /dataset/train/README.md: -------------------------------------------------------------------------------- 1 | put data here 2 | -------------------------------------------------------------------------------- /model/README.md: -------------------------------------------------------------------------------- 1 | save model 2 | -------------------------------------------------------------------------------- /model/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/model/checkpoint -------------------------------------------------------------------------------- /model/model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/model/model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /model/model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/model/model.ckpt.index -------------------------------------------------------------------------------- /model/model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/model/model.ckpt.meta -------------------------------------------------------------------------------- /result/rnn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/result/rnn.gif -------------------------------------------------------------------------------- /result/rnn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/result/rnn.mp4 -------------------------------------------------------------------------------- /run_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/run_rnn.py -------------------------------------------------------------------------------- /train_logs/README.md: -------------------------------------------------------------------------------- 1 | 将训练数据日志存放此处 -------------------------------------------------------------------------------- /train_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/train_rnn.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/utils.py -------------------------------------------------------------------------------- /读我.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhanyuefeng/Realtime-Fall-Detection-for-RNN/HEAD/读我.md --------------------------------------------------------------------------------