├── .gitignore ├── 01_Code ├── 01_EPC │ ├── 01_Import │ │ └── 01_import_data.ipynb │ ├── 02_Preprocessing │ │ ├── 01_Sampling.ipynb │ │ ├── 02_Data_audit.ipynb │ │ ├── 03_corr_and_chi2.ipynb │ │ ├── 04_Categorical_cleanup.ipynb │ │ ├── 05_CHAID.ipynb │ │ ├── 06_data_driven_features.ipynb │ │ ├── 06_domain_driven_features.ipynb │ │ ├── 06_exhaustive_features.ipynb │ │ ├── chi_squared_all.csv │ │ ├── chi_target.csv │ │ └── test_ai_address.csv │ ├── 03_Baseline_model │ │ └── 01_Baseline_model.ipynb │ ├── 04_Machine_learning │ │ └── Modelling.ipynb │ └── 05_Deep_learning │ │ └── 01_ANN.ipynb ├── 02_EPC_proxies │ ├── Block_counts.ipynb │ └── Polygon_features.ipynb ├── config-example.json └── config-explanation.md ├── 02_images ├── Numeric_correlations.png ├── cost_correlations.png └── house_desc_correlations.png ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/.gitignore -------------------------------------------------------------------------------- /01_Code/01_EPC/01_Import/01_import_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/01_Import/01_import_data.ipynb -------------------------------------------------------------------------------- /01_Code/01_EPC/02_Preprocessing/01_Sampling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/02_Preprocessing/01_Sampling.ipynb -------------------------------------------------------------------------------- /01_Code/01_EPC/02_Preprocessing/02_Data_audit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/02_Preprocessing/02_Data_audit.ipynb -------------------------------------------------------------------------------- /01_Code/01_EPC/02_Preprocessing/03_corr_and_chi2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/02_Preprocessing/03_corr_and_chi2.ipynb -------------------------------------------------------------------------------- /01_Code/01_EPC/02_Preprocessing/04_Categorical_cleanup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/02_Preprocessing/04_Categorical_cleanup.ipynb -------------------------------------------------------------------------------- /01_Code/01_EPC/02_Preprocessing/05_CHAID.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/02_Preprocessing/05_CHAID.ipynb -------------------------------------------------------------------------------- /01_Code/01_EPC/02_Preprocessing/06_data_driven_features.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/02_Preprocessing/06_data_driven_features.ipynb -------------------------------------------------------------------------------- /01_Code/01_EPC/02_Preprocessing/06_domain_driven_features.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/02_Preprocessing/06_domain_driven_features.ipynb -------------------------------------------------------------------------------- /01_Code/01_EPC/02_Preprocessing/06_exhaustive_features.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/02_Preprocessing/06_exhaustive_features.ipynb -------------------------------------------------------------------------------- /01_Code/01_EPC/02_Preprocessing/chi_squared_all.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/02_Preprocessing/chi_squared_all.csv -------------------------------------------------------------------------------- /01_Code/01_EPC/02_Preprocessing/chi_target.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/02_Preprocessing/chi_target.csv -------------------------------------------------------------------------------- /01_Code/01_EPC/02_Preprocessing/test_ai_address.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/02_Preprocessing/test_ai_address.csv -------------------------------------------------------------------------------- /01_Code/01_EPC/03_Baseline_model/01_Baseline_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/03_Baseline_model/01_Baseline_model.ipynb -------------------------------------------------------------------------------- /01_Code/01_EPC/04_Machine_learning/Modelling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/04_Machine_learning/Modelling.ipynb -------------------------------------------------------------------------------- /01_Code/01_EPC/05_Deep_learning/01_ANN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/01_EPC/05_Deep_learning/01_ANN.ipynb -------------------------------------------------------------------------------- /01_Code/02_EPC_proxies/Block_counts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/02_EPC_proxies/Block_counts.ipynb -------------------------------------------------------------------------------- /01_Code/02_EPC_proxies/Polygon_features.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/02_EPC_proxies/Polygon_features.ipynb -------------------------------------------------------------------------------- /01_Code/config-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/config-example.json -------------------------------------------------------------------------------- /01_Code/config-explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/01_Code/config-explanation.md -------------------------------------------------------------------------------- /02_images/Numeric_correlations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/02_images/Numeric_correlations.png -------------------------------------------------------------------------------- /02_images/cost_correlations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/02_images/cost_correlations.png -------------------------------------------------------------------------------- /02_images/house_desc_correlations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/02_images/house_desc_correlations.png -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/energy-efficiency/HEAD/README.md --------------------------------------------------------------------------------