Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Fix saved model paths in heat_cold_load model
Browse files Browse the repository at this point in the history
  • Loading branch information
yashasvini121 authored Oct 28, 2024
1 parent 059e82d commit 4afdadb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/Heat_Cool_Load_Predictor/model.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from joblib import load

heat_model = load('predictive-calc\models\Heat_Cool_Load_Predictor\saved_models\heat_model.pkl')
cool_model = load('predictive-calc\models\Heat_Cool_Load_Predictor\saved_models\cool_model.pkl')
heat_model = load('models\Heat_Cool_Load_Predictor\saved_models\heat_model.pkl')
cool_model = load('models\Heat_Cool_Load_Predictor\saved_models\cool_model.pkl')

def heat_load_prediction(relative_compactness, surface_area, wall_area, roof_area, overall_height, orientation, glazing_area, glazing_area_distribution):
features = [
Expand Down

0 comments on commit 4afdadb

Please sign in to comment.