Spaces:
Sleeping
Sleeping
File size: 13,604 Bytes
e5b3bea |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 |
import gradio as gr
import json
import pickle
import pandas as pd
import numpy as np
from datetime import datetime
import os
class EnergyMLPredictor:
def __init__(self):
self.rf_model = None
self.rf_preprocessor = None
self.xgb_model = None
self.xgb_encoders = None
self.threshold_model_83 = None
self.threshold_model_90 = None
self.threshold_preprocessor = None
self.models_loaded = False
def load_models(self):
"""Load all models from pickle files"""
try:
# Load Random Forest Energy Model
if os.path.exists('rf_energy_model.pkl'):
with open('rf_energy_model.pkl', 'rb') as f:
rf_data = pickle.load(f)
self.rf_model = rf_data['model']
self.rf_preprocessor = rf_data['preprocessor']
# Load XGBoost Energy Model
if os.path.exists('xgboost_energy_model.pkl'):
with open('xgboost_energy_model.pkl', 'rb') as f:
xgb_data = pickle.load(f)
self.xgb_model = xgb_data['model']
self.xgb_encoders = xgb_data['label_encoders']
# Load Threshold Models
if os.path.exists('threshold_model_83.pkl'):
with open('threshold_model_83.pkl', 'rb') as f:
threshold_data = pickle.load(f)
self.threshold_model_83 = threshold_data['model']
self.threshold_preprocessor = threshold_data['preprocessor']
if os.path.exists('threshold_model_90.pkl'):
with open('threshold_model_90.pkl', 'rb') as f:
threshold_data = pickle.load(f)
self.threshold_model_90 = threshold_data['model']
self.models_loaded = True
return "Models loaded successfully"
except Exception as e:
return f"Error loading models: {str(e)}"
def predict_threshold(self, json_input):
"""Predict threshold exceedance"""
try:
if not self.models_loaded:
return "Error: Models not loaded"
if not self.threshold_model_83 or not self.threshold_model_90:
return "Error: Threshold models not available"
data = json.loads(json_input)
# Parse input data
date_obj = datetime.strptime(data['data'], '%Y-%m-%d')
# Color mapping
color_mapping = {0: 'incolor', 1: 'verde', 2: 'cinza', 3: 'bronze'}
cor_str = color_mapping.get(data['cor'], 'incolor')
# Create input features
input_data = {
'boosting': data['pot_boost'],
'espessura': data['espessura'],
'extracao_forno': data['extracao_forno'],
'porcentagem_caco': data['porcentagem_caco'],
'cor': cor_str,
'prod_e': data['Prod_E'],
'prod_l': data['Prod_L'],
'week_day': date_obj.weekday(),
'month': date_obj.month,
'quarter': (date_obj.month - 1) // 3 + 1,
'is_weekend': int(date_obj.weekday() >= 5),
'week_of_year': date_obj.isocalendar()[1],
'day_of_month': date_obj.day,
'day_of_year': date_obj.timetuple().tm_yday
}
# Convert to DataFrame
input_df = pd.DataFrame([input_data])
# Preprocess
X_processed = self.threshold_preprocessor.transform(input_df)
# Make predictions
prob_83 = self.threshold_model_83.predict_proba(X_processed)[0][1] if len(self.threshold_model_83.classes_) > 1 else 0.0
pred_83 = int(prob_83 > 0.5)
prob_90 = self.threshold_model_90.predict_proba(X_processed)[0][1] if len(self.threshold_model_90.classes_) > 1 else 0.0
pred_90 = int(prob_90 > 0.5)
# Format response
next_date = (date_obj + pd.Timedelta(days=1)).strftime('%Y-%m-%d')
result = {
"predictions": {
"prediction_1": [
{
"datetime": data['data'],
"probabilidade_de_estouro": float(prob_83),
"estouro_previsto": pred_83
},
{
"datetime": next_date,
"probabilidade_de_estouro": float(prob_83 * 0.98),
"estouro_previsto": int(prob_83 * 0.98 > 0.5)
}
],
"prediction_2": [
{
"datetime": data['data'],
"probabilidade_de_estouro": float(prob_90),
"estouro_previsto": pred_90
},
{
"datetime": next_date,
"probabilidade_de_estouro": float(prob_90 * 0.99),
"estouro_previsto": int(prob_90 * 0.99 > 0.5)
}
]
}
}
return json.dumps(result, indent=2)
except json.JSONDecodeError:
return "Error: Invalid JSON format"
except Exception as e:
return f"Error: {str(e)}"
def predict_energy_rf(self, json_input):
"""Predict energy using Random Forest"""
try:
if not self.models_loaded or not self.rf_model:
return "Error: Random Forest model not available"
data = json.loads(json_input)
if not isinstance(data, list):
data = [data]
results = []
for item in data:
# Parse input
date_obj = datetime.strptime(item['data'], '%Y-%m-%d')
boosting_val = float(item['boosting'].replace(',', '.'))
extracao_val = float(item['extracao_forno'].replace(',', '.'))
# Create features
input_data = {
'boosting': boosting_val,
'espessura': item['espessura'],
'extracao_forno': extracao_val,
'porcentagem_caco': item['porcentagem_caco'],
'cor': item['cor'].lower(),
'prod_e': 1,
'prod_l': 1,
'autoclave': 1,
'week_day': date_obj.weekday(),
'month': date_obj.month,
'quarter': (date_obj.month - 1) // 3 + 1,
'is_weekend': int(date_obj.weekday() >= 5),
'week_of_year': date_obj.isocalendar()[1],
'day_of_month': date_obj.day,
'day_of_year': date_obj.timetuple().tm_yday
}
# Predict
input_df = pd.DataFrame([input_data])
X_processed = self.rf_preprocessor.transform(input_df)
prediction = self.rf_model.predict(X_processed)[0]
results.append({
"data": date_obj.strftime('%d-%m-%Y'),
"predictions": float(prediction)
})
return json.dumps(results, indent=2)
except json.JSONDecodeError:
return "Error: Invalid JSON format"
except Exception as e:
return f"Error: {str(e)}"
def predict_energy_xgb(self, json_input):
"""Predict energy using XGBoost"""
try:
if not self.models_loaded or not self.xgb_model:
return "Error: XGBoost model not available"
data = json.loads(json_input)
if not isinstance(data, list):
data = [data]
results = []
for item in data:
# Parse input
date_obj = datetime.strptime(item['data'], '%Y-%m-%d')
boosting_val = float(item['boosting'].replace(',', '.'))
extracao_val = float(item['extracao_forno'].replace(',', '.'))
# Create features
input_data = {
'boosting': boosting_val,
'espessura': item['espessura'],
'extracao_forno': extracao_val,
'porcentagem_caco': item['porcentagem_caco'],
'cor': item['cor'].lower(),
'prod_e': 1,
'prod_l': 1,
'autoclave': 1,
'week_day': date_obj.weekday(),
'month': date_obj.month,
'quarter': (date_obj.month - 1) // 3 + 1,
'is_weekend': int(date_obj.weekday() >= 5),
'week_of_year': date_obj.isocalendar()[1],
'day_of_month': date_obj.day,
'day_of_year': date_obj.timetuple().tm_yday
}
# Encode categorical features
input_df = pd.DataFrame([input_data])
for col in input_df.columns:
if col in self.xgb_encoders:
try:
input_df[col] = self.xgb_encoders[col].transform(input_df[col].astype(str))
except ValueError:
# Handle unknown categories
input_df[col] = 0
# Predict
prediction = self.xgb_model.predict(input_df.values)[0]
results.append({
"data": date_obj.strftime('%d-%m-%Y'),
"predictions": float(prediction)
})
return json.dumps(results, indent=2)
except json.JSONDecodeError:
return "Error: Invalid JSON format"
except Exception as e:
return f"Error: {str(e)}"
# Initialize predictor
predictor = EnergyMLPredictor()
def make_prediction(model_choice, json_input):
"""Make prediction based on model choice"""
if not predictor.models_loaded:
load_msg = predictor.load_models()
if "Error" in load_msg:
return load_msg
if model_choice == "Threshold Detection":
return predictor.predict_threshold(json_input)
elif model_choice == "Energy Prediction (Random Forest)":
return predictor.predict_energy_rf(json_input)
elif model_choice == "Energy Prediction (XGBoost)":
return predictor.predict_energy_xgb(json_input)
else:
return "Error: Please select a model"
# Default examples
threshold_example = """{
"data": "2023-01-01",
"cor": 0,
"espessura": 8.0,
"ext_boosting": 65.0,
"extracao_forno": 851.1,
"porcentagem_caco": 15.0,
"pot_boost": 3.0,
"Prod_E": 1,
"Prod_L": 1
}"""
energy_example = """[
{
"data": "2023-01-01",
"boosting": "0,0",
"cor": "incolor",
"espessura": 10,
"extracao_forno": "651,6",
"porcentagem_caco": 10.0
}
]"""
# Create Gradio interface
with gr.Blocks(title="Energy ML Cloud", theme=gr.themes.Default()) as app:
gr.Markdown("# Energy ML Prediction System")
gr.Markdown("Cloud deployment with embedded models")
with gr.Row():
with gr.Column():
model_choice = gr.Radio(
choices=[
"Threshold Detection",
"Energy Prediction (Random Forest)",
"Energy Prediction (XGBoost)"
],
label="Select Model",
value="Threshold Detection"
)
json_input = gr.Textbox(
label="JSON Input",
placeholder="Enter JSON data here...",
lines=15,
value=threshold_example
)
predict_btn = gr.Button("Make Prediction", variant="primary")
with gr.Column():
output = gr.Textbox(
label="Prediction Result",
lines=20,
interactive=False
)
def update_example(choice):
if "Threshold" in choice:
return threshold_example
else:
return energy_example
model_choice.change(update_example, inputs=[model_choice], outputs=[json_input])
predict_btn.click(make_prediction, inputs=[model_choice, json_input], outputs=[output])
with gr.Accordion("Model Information", open=False):
gr.Markdown("""
## Available Models
- **Threshold Detection**: Predict probability of exceeding 8.3 and 9.0 MWh
- **Random Forest**: Energy consumption prediction (R² = 0.72)
- **XGBoost**: Energy consumption prediction (R² = 0.56, winner model)
## Input Formats
See examples that change when you select different models.
""")
if __name__ == "__main__":
app.launch(
auth=("admin", "energy123"),
share=True
) |