├── .idea ├── AnomalyDetection.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LSTM_model.py ├── README.md ├── Untitled Diagram.drawio ├── _1in_out_merge.py ├── _2npy_filter.py ├── _3draw_the_first_month.py ├── _3generate_data_csv.py ├── _4train_model.py ├── _5draw_train_loss.py ├── _5predict_by_model.py ├── _6predict_the_5th_week.py ├── __pycache__ ├── LSTM_model.cpython-36.pyc ├── _5predict_by_model.cpython-36.pyc └── config.cpython-36.pyc ├── config.py ├── imgs ├── Fig1.png ├── Fig2.png ├── Fig3.jpg ├── Fig4.jpg ├── Fig5.png └── Fig6.jpg ├── model ├── checkpoint ├── final_state.npy ├── model.ckpt.data-00000-of-00001 ├── model.ckpt.index └── model.ckpt.meta └── temp_data ├── cost.npy ├── cost.png ├── data.csv └── npy.txt /.idea/AnomalyDetection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/.idea/AnomalyDetection.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LSTM_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/LSTM_model.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/README.md -------------------------------------------------------------------------------- /Untitled Diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/Untitled Diagram.drawio -------------------------------------------------------------------------------- /_1in_out_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/_1in_out_merge.py -------------------------------------------------------------------------------- /_2npy_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/_2npy_filter.py -------------------------------------------------------------------------------- /_3draw_the_first_month.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/_3draw_the_first_month.py -------------------------------------------------------------------------------- /_3generate_data_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/_3generate_data_csv.py -------------------------------------------------------------------------------- /_4train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/_4train_model.py -------------------------------------------------------------------------------- /_5draw_train_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/_5draw_train_loss.py -------------------------------------------------------------------------------- /_5predict_by_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/_5predict_by_model.py -------------------------------------------------------------------------------- /_6predict_the_5th_week.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/_6predict_the_5th_week.py -------------------------------------------------------------------------------- /__pycache__/LSTM_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/__pycache__/LSTM_model.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/_5predict_by_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/__pycache__/_5predict_by_model.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/config.py -------------------------------------------------------------------------------- /imgs/Fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/imgs/Fig1.png -------------------------------------------------------------------------------- /imgs/Fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/imgs/Fig2.png -------------------------------------------------------------------------------- /imgs/Fig3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/imgs/Fig3.jpg -------------------------------------------------------------------------------- /imgs/Fig4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/imgs/Fig4.jpg -------------------------------------------------------------------------------- /imgs/Fig5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/imgs/Fig5.png -------------------------------------------------------------------------------- /imgs/Fig6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/imgs/Fig6.jpg -------------------------------------------------------------------------------- /model/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/model/checkpoint -------------------------------------------------------------------------------- /model/final_state.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/model/final_state.npy -------------------------------------------------------------------------------- /model/model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/model/model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /model/model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/model/model.ckpt.index -------------------------------------------------------------------------------- /model/model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/model/model.ckpt.meta -------------------------------------------------------------------------------- /temp_data/cost.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/temp_data/cost.npy -------------------------------------------------------------------------------- /temp_data/cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/temp_data/cost.png -------------------------------------------------------------------------------- /temp_data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/temp_data/data.csv -------------------------------------------------------------------------------- /temp_data/npy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSQianDong/AnomalyDetection/HEAD/temp_data/npy.txt --------------------------------------------------------------------------------