├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data ├── dataset.pkl ├── equipment.pkl └── teaser.png ├── dre_pdm ├── __init__.py ├── feedback.py ├── human.py ├── train_utils.py └── utils.py ├── experiments ├── analysis.ipynb ├── results │ ├── list_1.txt │ ├── list_10.txt │ └── list_25.txt └── simulator.ipynb ├── requirements.txt └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/README.md -------------------------------------------------------------------------------- /data/dataset.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/data/dataset.pkl -------------------------------------------------------------------------------- /data/equipment.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/data/equipment.pkl -------------------------------------------------------------------------------- /data/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/data/teaser.png -------------------------------------------------------------------------------- /dre_pdm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dre_pdm/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/dre_pdm/feedback.py -------------------------------------------------------------------------------- /dre_pdm/human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/dre_pdm/human.py -------------------------------------------------------------------------------- /dre_pdm/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/dre_pdm/train_utils.py -------------------------------------------------------------------------------- /dre_pdm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/dre_pdm/utils.py -------------------------------------------------------------------------------- /experiments/analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/experiments/analysis.ipynb -------------------------------------------------------------------------------- /experiments/results/list_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/experiments/results/list_1.txt -------------------------------------------------------------------------------- /experiments/results/list_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/experiments/results/list_10.txt -------------------------------------------------------------------------------- /experiments/results/list_25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/experiments/results/list_25.txt -------------------------------------------------------------------------------- /experiments/simulator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/experiments/simulator.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoPML/human-in-the-loop-predictive-maintenance/HEAD/setup.py --------------------------------------------------------------------------------