mirror of
https://github.com/Hestia-Homes/ML.git
synced 2026-06-08 11:17:25 +00:00
Compare commits
5 commits
master
...
heat@v0.0.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dffb01bf8e | ||
|
|
d2a7615e3b | ||
|
|
4c6c5330d8 | ||
|
|
9e7d0fa538 | ||
|
|
ad2c266727 |
7 changed files with 53 additions and 30 deletions
|
|
@ -4,9 +4,7 @@ After the model is built, we can evaluate its performance
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import yaml
|
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
from pathlib import Path
|
|
||||||
from core.interface.InterfaceModels import MLModel
|
from core.interface.InterfaceModels import MLModel
|
||||||
from core.interface.InterfaceMetrics import MLMetrics
|
from core.interface.InterfaceMetrics import MLMetrics
|
||||||
from core.interface.InterfaceDataClient import DataClient
|
from core.interface.InterfaceDataClient import DataClient
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,11 @@ def remove_starting_columns(df):
|
||||||
return df
|
return df
|
||||||
|
|
||||||
|
|
||||||
|
def keep_negative_heat_change(df):
|
||||||
|
df = df[df["HEAT_DEMAND_CHANGE"] < 0]
|
||||||
|
return df
|
||||||
|
|
||||||
|
|
||||||
# def keep_ending_columns(df):
|
# def keep_ending_columns(df):
|
||||||
# ending_column_index = [ col_name.endswith("_ENDING") for col_name in list(df.columns)]
|
# ending_column_index = [ col_name.endswith("_ENDING") for col_name in list(df.columns)]
|
||||||
# keep_columns = df.columns[ending_column_index].to_list()
|
# keep_columns = df.columns[ending_column_index].to_list()
|
||||||
|
|
@ -27,6 +32,7 @@ def remove_starting_columns(df):
|
||||||
# return df
|
# return df
|
||||||
|
|
||||||
business_logic = {
|
business_logic = {
|
||||||
|
"keep_negative_heat_change": keep_negative_heat_change
|
||||||
# "remove_starting_columns": remove_starting_columns
|
# "remove_starting_columns": remove_starting_columns
|
||||||
# "keep_ENDING_COLUMNS": keep_ending_columns
|
# "keep_ENDING_COLUMNS": keep_ending_columns
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,9 +12,11 @@ def clip_predictions_to_minimum_value(
|
||||||
predictions.name = "predictions"
|
predictions.name = "predictions"
|
||||||
predictions_df = pd.concat([data, predictions], axis=1)
|
predictions_df = pd.concat([data, predictions], axis=1)
|
||||||
# We expect all prediction to be atleast one point improvement
|
# We expect all prediction to be atleast one point improvement
|
||||||
replace_index = predictions_df["SAP_STARTING"] + 1 > predictions_df["predictions"]
|
replace_index = (
|
||||||
|
predictions_df["predictions"] > predictions_df["HEAT_DEMAND_STARTING"] - 1
|
||||||
|
)
|
||||||
predictions_df.loc[replace_index, "predictions"] = (
|
predictions_df.loc[replace_index, "predictions"] = (
|
||||||
predictions_df.loc[replace_index, "SAP_STARTING"] + minimum_value
|
predictions_df.loc[replace_index, "HEAT_DEMAND_STARTING"] - minimum_value
|
||||||
)
|
)
|
||||||
|
|
||||||
predictions_new = predictions_df["predictions"]
|
predictions_new = predictions_df["predictions"]
|
||||||
|
|
|
||||||
|
|
@ -31,9 +31,9 @@ default:
|
||||||
feature_processor_config:
|
feature_processor_config:
|
||||||
subsample_amount: null
|
subsample_amount: null
|
||||||
subsample_seed: 0
|
subsample_seed: 0
|
||||||
target: SAP_ENDING
|
target: HEAT_DEMAND_ENDING
|
||||||
identifier_columns: ["UPRN"]
|
identifier_columns: ["UPRN"]
|
||||||
drop_columns: ["HEAT_DEMAND_CHANGE", "CARBON_CHANGE", "RDSAP_CHANGE", "HEAT_DEMAND_ENDING", "CARBON_ENDING"]
|
drop_columns: ["HEAT_DEMAND_CHANGE", "CARBON_CHANGE", "RDSAP_CHANGE", "SAP_ENDING", "CARBON_ENDING"]
|
||||||
# retain_features: ["SAP_STARTING", "TOTAL_FLOOR_AREA_DIFF"]
|
# retain_features: ["SAP_STARTING", "TOTAL_FLOOR_AREA_DIFF"]
|
||||||
retain_features: null
|
retain_features: null
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ Implementation of MLMetrics, all of which will have two methods:
|
||||||
- Generate Plot Suite
|
- Generate Plot Suite
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import numpy as np
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
from typing import Union
|
from typing import Union
|
||||||
from sklearn.metrics import (
|
from sklearn.metrics import (
|
||||||
|
|
@ -14,6 +15,18 @@ from sklearn.metrics import (
|
||||||
)
|
)
|
||||||
from core.interface.InterfaceMetrics import MLMetrics
|
from core.interface.InterfaceMetrics import MLMetrics
|
||||||
|
|
||||||
|
# Define the function to return the SMAPE value
|
||||||
|
def symmetric_mape(actual, predicted) -> float:
|
||||||
|
|
||||||
|
# Convert actual and predicted to numpy
|
||||||
|
# array data type if not already
|
||||||
|
if not all([isinstance(actual, np.ndarray), isinstance(predicted, np.ndarray)]):
|
||||||
|
actual, predicted = np.array(actual), np.array(predicted)
|
||||||
|
|
||||||
|
return np.mean(
|
||||||
|
np.abs(predicted - actual) / ((np.abs(predicted) + np.abs(actual)) / 2)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def metrics_factory(metrics_type: str) -> MLMetrics:
|
def metrics_factory(metrics_type: str) -> MLMetrics:
|
||||||
metrics = {
|
metrics = {
|
||||||
|
|
@ -34,7 +47,7 @@ class RegressionMetrics:
|
||||||
median_absolute_error,
|
median_absolute_error,
|
||||||
mean_squared_error,
|
mean_squared_error,
|
||||||
mean_absolute_percentage_error,
|
mean_absolute_percentage_error,
|
||||||
# max_error
|
symmetric_mape,
|
||||||
]
|
]
|
||||||
|
|
||||||
def generate_metrics(
|
def generate_metrics(
|
||||||
|
|
|
||||||
|
|
@ -13,12 +13,12 @@ stages:
|
||||||
- HEAT_DEMAND_CHANGE
|
- HEAT_DEMAND_CHANGE
|
||||||
- CARBON_CHANGE
|
- CARBON_CHANGE
|
||||||
- RDSAP_CHANGE
|
- RDSAP_CHANGE
|
||||||
- HEAT_DEMAND_ENDING
|
- SAP_ENDING
|
||||||
- CARBON_ENDING
|
- CARBON_ENDING
|
||||||
default.feature_processor.feature_processor_config.retain_features:
|
default.feature_processor.feature_processor_config.retain_features:
|
||||||
default.feature_processor.feature_processor_config.subsample_amount:
|
default.feature_processor.feature_processor_config.subsample_amount:
|
||||||
default.feature_processor.feature_processor_config.subsample_seed: 0
|
default.feature_processor.feature_processor_config.subsample_seed: 0
|
||||||
default.feature_processor.feature_processor_config.target: SAP_ENDING
|
default.feature_processor.feature_processor_config.target: HEAT_DEMAND_ENDING
|
||||||
default.feature_processor.feature_processor_type: dataframe
|
default.feature_processor.feature_processor_type: dataframe
|
||||||
default.prepare_data.data_filepath: s3://retrofit-data-dev/sap_change_model/dataset.parquet
|
default.prepare_data.data_filepath: s3://retrofit-data-dev/sap_change_model/dataset.parquet
|
||||||
default.prepare_data.input_dataclient_type: aws-s3
|
default.prepare_data.input_dataclient_type: aws-s3
|
||||||
|
|
@ -29,8 +29,8 @@ stages:
|
||||||
outs:
|
outs:
|
||||||
- path: data/prepared_data/
|
- path: data/prepared_data/
|
||||||
hash: md5
|
hash: md5
|
||||||
md5: 9ce5c45722da7fc40491b5a4d00daf9e.dir
|
md5: e0be70d5025e40dd0d655d9949f72130.dir
|
||||||
size: 33881619
|
size: 31800776
|
||||||
nfiles: 2
|
nfiles: 2
|
||||||
build_model:
|
build_model:
|
||||||
cmd: python 2_build_model.py
|
cmd: python 2_build_model.py
|
||||||
|
|
@ -41,8 +41,8 @@ stages:
|
||||||
size: 5359
|
size: 5359
|
||||||
- path: data/prepared_data
|
- path: data/prepared_data
|
||||||
hash: md5
|
hash: md5
|
||||||
md5: 9ce5c45722da7fc40491b5a4d00daf9e.dir
|
md5: e0be70d5025e40dd0d655d9949f72130.dir
|
||||||
size: 33881619
|
size: 31800776
|
||||||
nfiles: 2
|
nfiles: 2
|
||||||
params:
|
params:
|
||||||
configs/build_model.yaml:
|
configs/build_model.yaml:
|
||||||
|
|
@ -66,13 +66,13 @@ stages:
|
||||||
outs:
|
outs:
|
||||||
- path: data/model/
|
- path: data/model/
|
||||||
hash: md5
|
hash: md5
|
||||||
md5: 7bb5156243b4db39349e80a01ffecde4.dir
|
md5: 14ca33cde5e86770135f768abaf84978.dir
|
||||||
size: 473398662
|
size: 422447808
|
||||||
nfiles: 27
|
nfiles: 27
|
||||||
- path: metrics/fit_metrics.json
|
- path: metrics/fit_metrics.json
|
||||||
hash: md5
|
hash: md5
|
||||||
md5: 2bb16ac67de8778fbc08171d562b34d5
|
md5: 41bfb8d2da8f06d1864d73ce125cc6aa
|
||||||
size: 184
|
size: 221
|
||||||
generate_predictions:
|
generate_predictions:
|
||||||
cmd: python 3_generate_predictions.py
|
cmd: python 3_generate_predictions.py
|
||||||
deps:
|
deps:
|
||||||
|
|
@ -82,13 +82,13 @@ stages:
|
||||||
size: 3028
|
size: 3028
|
||||||
- path: data/model
|
- path: data/model
|
||||||
hash: md5
|
hash: md5
|
||||||
md5: 7bb5156243b4db39349e80a01ffecde4.dir
|
md5: 14ca33cde5e86770135f768abaf84978.dir
|
||||||
size: 473398662
|
size: 422447808
|
||||||
nfiles: 27
|
nfiles: 27
|
||||||
- path: data/prepared_data
|
- path: data/prepared_data
|
||||||
hash: md5
|
hash: md5
|
||||||
md5: 9ce5c45722da7fc40491b5a4d00daf9e.dir
|
md5: e0be70d5025e40dd0d655d9949f72130.dir
|
||||||
size: 33881619
|
size: 31800776
|
||||||
nfiles: 2
|
nfiles: 2
|
||||||
params:
|
params:
|
||||||
configs/settings.yaml:
|
configs/settings.yaml:
|
||||||
|
|
@ -100,8 +100,8 @@ stages:
|
||||||
outs:
|
outs:
|
||||||
- path: data/predictions/
|
- path: data/predictions/
|
||||||
hash: md5
|
hash: md5
|
||||||
md5: 0bb3cf991906953def81c8204cdcfaf0.dir
|
md5: 40d0c7a7fd4a15add0615e322cf341a0.dir
|
||||||
size: 374532
|
size: 352151
|
||||||
nfiles: 1
|
nfiles: 1
|
||||||
generate_metrics:
|
generate_metrics:
|
||||||
cmd: python 4_generate_metrics.py
|
cmd: python 4_generate_metrics.py
|
||||||
|
|
@ -112,13 +112,13 @@ stages:
|
||||||
size: 4487
|
size: 4487
|
||||||
- path: data/predictions
|
- path: data/predictions
|
||||||
hash: md5
|
hash: md5
|
||||||
md5: 0bb3cf991906953def81c8204cdcfaf0.dir
|
md5: 40d0c7a7fd4a15add0615e322cf341a0.dir
|
||||||
size: 374532
|
size: 352151
|
||||||
nfiles: 1
|
nfiles: 1
|
||||||
- path: data/prepared_data
|
- path: data/prepared_data
|
||||||
hash: md5
|
hash: md5
|
||||||
md5: 9ce5c45722da7fc40491b5a4d00daf9e.dir
|
md5: e0be70d5025e40dd0d655d9949f72130.dir
|
||||||
size: 33881619
|
size: 31800776
|
||||||
nfiles: 2
|
nfiles: 2
|
||||||
params:
|
params:
|
||||||
configs/settings.yaml:
|
configs/settings.yaml:
|
||||||
|
|
@ -128,8 +128,8 @@ stages:
|
||||||
outs:
|
outs:
|
||||||
- path: metrics/metrics.json
|
- path: metrics/metrics.json
|
||||||
hash: md5
|
hash: md5
|
||||||
md5: 2e13ae67759a64261d03224f1c0d4bf4
|
md5: 4e023650240e78d6ad761f1db7aac922
|
||||||
size: 185
|
size: 220
|
||||||
startup_cleanup:
|
startup_cleanup:
|
||||||
cmd: python 0_startup_cleanup.py
|
cmd: python 0_startup_cleanup.py
|
||||||
deps:
|
deps:
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,6 @@ train_df[[target, "SAP_STARTING"]].plot(y=target, x="SAP_STARTING", style="o")
|
||||||
train_df[[target, "HEAT_DEMAND_STARTING"]].plot(
|
train_df[[target, "HEAT_DEMAND_STARTING"]].plot(
|
||||||
x=target, y="HEAT_DEMAND_STARTING", style="o"
|
x=target, y="HEAT_DEMAND_STARTING", style="o"
|
||||||
)
|
)
|
||||||
|
|
||||||
# Both make sense: i.e. the higher the sap, the lower we predict and the higher the heat demand, the higher we predict
|
# Both make sense: i.e. the higher the sap, the lower we predict and the higher the heat demand, the higher we predict
|
||||||
|
|
||||||
# Load the autogluon model and check feature importance
|
# Load the autogluon model and check feature importance
|
||||||
|
|
@ -176,6 +175,8 @@ plot_permutation_importance(exp, fig_kw={"figwidth": 7, "figheight": 6})
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
|
from core.MLMetrics import metrics_factory
|
||||||
|
|
||||||
from core.MLModels import model_factory
|
from core.MLModels import model_factory
|
||||||
from core.DataClient import dataclient_factory
|
from core.DataClient import dataclient_factory
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
|
|
@ -206,6 +207,9 @@ mix_df = pd.concat([test_df.copy(), predictions], axis=1)
|
||||||
mix_df["residual"] = abs(mix_df[predictions_column_name] - mix_df[target])
|
mix_df["residual"] = abs(mix_df[predictions_column_name] - mix_df[target])
|
||||||
mix_df = mix_df.sort_values("residual", ascending=False)
|
mix_df = mix_df.sort_values("residual", ascending=False)
|
||||||
|
|
||||||
|
metrics = metrics_factory("Regression")
|
||||||
|
metrics.generate_metrics(mix_df["predictions"], mix_df["HEAT_DEMAND_ENDING"])
|
||||||
|
|
||||||
cosine_similarity_df = mix_df[
|
cosine_similarity_df = mix_df[
|
||||||
mix_df.columns.difference(["predictions", "residual", "SAP_ENDING"])
|
mix_df.columns.difference(["predictions", "residual", "SAP_ENDING"])
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue