Spaces:
Paused
Paused
File size: 31,293 Bytes
97a4bf8 | 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 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 | # models/train.py
import time
import streamlit as st
import pandas as pd
import numpy as np
from sklearn.model_selection import train_test_split, GridSearchCV
from sklearn.preprocessing import StandardScaler, LabelEncoder
from sklearn.pipeline import Pipeline
from imblearn.over_sampling import SMOTE
from sklearn.utils import resample
from sklearn.metrics import (
mean_squared_error, r2_score,
accuracy_score, classification_report, confusion_matrix
)
import os
import sys
import pickle
import io
import h2o
from flaml import AutoML
from typing import Dict, Any, Optional
# Importaciones
from utils.model_utils import (
ModelTrainer, # Importar la clase
get_model_options,
train_model_pipeline,
process_classification_data,
create_class_distribution_plot
)
from utils.gemini_explainer import initialize_gemini_explainer
from utils.gemini_explainer import generate_model_explanation
from utils.shap_explainer import create_shap_analysis_dashboard
def safe_init_h2o(url=None, **kwargs):
"""
Safely initialize H2O cluster if not already running.
Args:
url (str, optional): H2O cluster URL. Defaults to None (local instance).
**kwargs: Additional arguments to pass to h2o.init()
Returns:
h2o._backend.H2OConnection: The H2O connection object
"""
# Get current H2O instance if exists
current = h2o.connection()
# Check if H2O is already running
if current and current.cluster:
print("H2O is already running at", current.base_url)
return current
# Initialize new H2O instance
print("Starting new H2O instance...")
return h2o.init(url=url, **kwargs)
def convert_h2o_to_pandas(h2o_df):
"""
Convierte un H2OFrame a pandas DataFrame utilizando múltiples hilos.
Args:
h2o_df (h2o.H2OFrame): Frame de H2O a convertir.
Returns:
pd.DataFrame: DataFrame de pandas.
"""
return h2o_df.as_data_frame(use_multi_thread=True)
# Obtener la ruta del directorio raíz del proyecto
project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
sys.path.insert(0, project_root)
def validate_data_preparation(train):
"""
Validar que los datos estén preparados correctamente
Args:
train (pd.DataFrame): Datos de entrenamiento
Returns:
bool: Indica si los datos están listos para entrenamiento
"""
if train is None or train.empty:
st.warning("⚠️ No hay datos preparados en la sesión.")
return False
return True
def select_features_and_target(train):
"""
Permitir al usuario seleccionar características y variable objetivo
Args:
train (pd.DataFrame): Datos de entrenamiento
Returns:
tuple: Variables predictoras (X) y variable objetivo (y)
"""
numeric_cols = train.select_dtypes(include=['int64', 'float64']).columns.tolist()
# Mantener las selecciones en session_state
if 'feature_cols' not in st.session_state:
st.session_state.feature_cols = []
feature_cols = st.multiselect(
"Selecciona las variables predictoras (X):",
numeric_cols,
default=st.session_state.feature_cols
)
st.session_state.feature_cols = feature_cols
# Obtener TODAS las columnas disponibles para target
all_cols = train.columns.tolist()
available_targets = [col for col in all_cols if col not in feature_cols]
if not available_targets:
st.warning("Por favor, deselecciona algunas variables predictoras para poder seleccionar la variable objetivo.")
return None, None
if ('target_col' not in st.session_state or
st.session_state.target_col not in available_targets):
st.session_state.target_col = available_targets[0]
target_col = st.selectbox(
"Selecciona la variable objetivo (y):",
available_targets,
index=available_targets.index(st.session_state.target_col)
)
st.session_state.target_col = target_col
if not (feature_cols and target_col):
st.warning("Por favor selecciona variables predictoras y objetivo.")
return None, None
X = train[feature_cols]
y = train[target_col]
return X, y
def determine_problem_type(y):
"""
Determinar el tipo de problema de machine learning
Args:
y (pd.Series): Variable objetivo
Returns:
str: Tipo de problema ('classification' o 'regression')
"""
is_categorical = y.dtype == 'object' or (y.dtype.name.startswith(('int', 'float')) and y.nunique() <= 10)
problem_type = 'classification' if is_categorical else 'regression'
st.write(f"Tipo de problema identificado: **{problem_type}**")
return problem_type
def handle_data_balancing(X, y, random_state):
"""
Manejar el desbalanceo de clases
Args:
X (pd.DataFrame): Variables predictoras
y (pd.Series): Variable objetivo
random_state (int): Semilla aleatoria
Returns:
tuple: Variables predictoras y objetivo balanceadas
"""
if y.value_counts().min() / y.value_counts().max() < 0.5:
st.write("⚠️ Se detectó desbalanceo en las clases")
balance_method = st.selectbox(
"Técnica de balanceo:",
["Ninguno", "Submuestreo", "Sobremuestreo", "SMOTE"]
)
if balance_method != "Ninguno":
with st.spinner("Aplicando técnica de balanceo..."):
if balance_method == "Submuestreo":
min_class_size = y.value_counts().min()
X, y = resample(X, y, n_samples=min_class_size*2, stratify=y)
elif balance_method == "Sobremuestreo":
max_class_size = y.value_counts().max()
X, y = resample(X, y, n_samples=max_class_size*2, stratify=y)
else: # SMOTE
smote = SMOTE(random_state=random_state)
X, y = smote.fit_resample(X, y)
st.success("Balanceo completado!")
return X, y
def safe_init_h2o(url=None, **kwargs):
"""
Safely initialize H2O cluster if not already running.
Args:
url (str, optional): H2O cluster URL. Defaults to None (local instance).
**kwargs: Additional arguments to pass to h2o.init()
Returns:
h2o._backend.H2OConnection: The H2O connection object
"""
# Get current H2O instance if exists
current = h2o.connection()
# Check if H2O is already running
if current and current.cluster:
print("H2O is already running at", current.base_url)
return current
# Initialize new H2O instance
print("Starting new H2O instance...")
return h2o.init(url=url, **kwargs)
class AutoMLTrainer:
"""Clase para gestionar el entrenamiento automático de modelos"""
@staticmethod
def train_h2o_automl(
X_train: pd.DataFrame,
y_train: pd.Series,
X_test: pd.DataFrame,
y_test: pd.Series,
problem_type: str,
time_limit: int = 3600,
max_models: int = 20
) -> Dict[str, Any]:
"""
Entrenar modelos usando H2O AutoML con manejo correcto de tipos de datos
"""
try:
safe_init_h2o()
# Crear un DataFrame combinado con la variable objetivo
train_df = X_train.copy()
test_df = X_test.copy()
# Manejar la variable objetivo según el tipo de problema
if problem_type == 'classification':
train_df['target'] = y_train.astype(str)
test_df['target'] = y_test.astype(str)
else:
train_df['target'] = y_train.astype(float)
test_df['target'] = y_test.astype(float)
# Convertir a H2OFrame
train = h2o.H2OFrame(train_df)
test = h2o.H2OFrame(test_df)
# Si es clasificación, convertir explícitamente la columna objetivo a factor
if problem_type == 'classification':
train['target'] = train['target'].asfactor()
test['target'] = test['target'].asfactor()
# Especificar columnas
feature_cols = X_train.columns.tolist()
target_col = 'target'
# Configurar AutoML
aml = h2o.automl.H2OAutoML(
max_runtime_secs=time_limit,
max_models=max_models,
seed=42,
sort_metric="AUTO"
)
# Entrenar
start_time = time.time()
aml.train(x=feature_cols, y=target_col, training_frame=train)
training_time = time.time() - start_time
# Obtener el mejor modelo
best_model = aml.leader
# Obtener hiperparámetros correctamente
hyperparameters = best_model.params
# Obtener predicciones
preds = best_model.predict(test[feature_cols])
predictions = preds.as_data_frame(use_pandas=True)
if problem_type == 'classification':
predictions = predictions['predict']
# Preparar resultados
results = {
'best_model': best_model,
'training_time': training_time,
'leaderboard': aml.leaderboard.as_data_frame(),
'hyperparameters': hyperparameters,
'predictions': predictions
}
# Métricas según tipo de problema
if problem_type == 'classification':
results.update({
'test_accuracy': accuracy_score(y_test.astype(str), predictions.astype(str)),
'classification_report': classification_report(
y_test.astype(str),
predictions.astype(str),
output_dict=True
)
})
else:
results.update({
'test_rmse': np.sqrt(mean_squared_error(y_test, predictions)),
'test_r2': r2_score(y_test, predictions)
})
return results
except Exception as e:
print(f"Error detallado en H2O AutoML: {str(e)}")
return {'error': str(e)}
@staticmethod
def train_flaml_automl(
X_train: pd.DataFrame,
y_train: pd.Series,
X_test: pd.DataFrame,
y_test: pd.Series,
problem_type: str,
time_limit: int = 3600,
metric: Optional[str] = None
) -> Dict[str, Any]:
"""
Entrenar modelos usando FLAML AutoML
Args:
X_train: Features de entrenamiento
y_train: Target de entrenamiento
X_test: Features de prueba
y_test: Target de prueba
problem_type: Tipo de problema
time_limit: Límite de tiempo en segundos
metric: Métrica de evaluación
Returns:
Dict con resultados del entrenamiento
"""
try:
# Configurar AutoML
task = 'classification' if problem_type == 'classification' else 'regression'
metric = metric or ('accuracy' if task == 'classification' else 'r2')
automl = AutoML()
# Entrenar
start_time = time.time()
automl.fit(
X_train=X_train,
y_train=y_train,
task=task,
time_budget=time_limit,
metric=metric,
verbose=1
)
training_time = time.time() - start_time
# Predicciones
predictions = automl.predict(X_test)
# Preparar resultados
results = {
'best_model': automl.model,
'best_config': automl.best_config,
'training_time': training_time,
'best_estimator': automl.best_estimator,
'predictions': predictions
}
# Métricas específicas
if problem_type == 'classification':
results.update({
'test_accuracy': accuracy_score(y_test, predictions),
'classification_report': classification_report(y_test, predictions, output_dict=True)
})
else:
results.update({
'test_rmse': np.sqrt(mean_squared_error(y_test, predictions)),
'test_r2': r2_score(y_test, predictions)
})
return results
except Exception as e:
return {'error': str(e)}
def descargar_modelo_h2o(modelo_h2o, nombre_modelo):
"""
Guarda y prepara el modelo H2O para su descarga.
Args:
modelo_h2o: Objeto del modelo H2O.
nombre_modelo (str): Nombre del modelo para el archivo.
Returns:
bytes: Contenido del archivo del modelo.
"""
try:
# Guardar el modelo en una ruta temporal
modelo_path = h2o.save_model(model=modelo_h2o, path="/tmp", force=True)
# Leer el archivo del modelo
with open(modelo_path, "rb") as file:
modelo_data = file.read()
# Opcional: Eliminar el archivo temporal después de leerlo
os.remove(modelo_path)
return modelo_data
except Exception as e:
st.error(f"Error al preparar el modelo para descarga: {str(e)}")
return None
def show_automl_section(X: pd.DataFrame, y: pd.Series, problem_type: str):
"""Mostrar sección de AutoML"""
st.header("🤖 Búsqueda Automática del Mejor Modelo")
# Parámetros de AutoML
col1, col2 = st.columns(2)
with col1:
time_limit = st.number_input(
"Límite de tiempo (segundos)",
min_value=60,
max_value=7200,
value=3600,
step=300,
key="automl_time_limit"
)
with col2:
framework = st.selectbox(
"Framework AutoML",
["H2O AutoML", "FLAML"],
key="automl_framework"
)
# Inicializar estado para modelos AutoML
if 'automl_models' not in st.session_state:
st.session_state.automl_models = {}
# Botón de entrenamiento
train_button = st.button(
"Entrenar Modelos Automáticamente",
key="train_automl_button",
use_container_width=True
)
if train_button:
try:
# División de datos
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.2, random_state=42,
stratify=y if problem_type == 'classification' else None
)
with st.spinner("Entrenando modelos automáticamente..."):
if framework == "H2O AutoML":
results = AutoMLTrainer.train_h2o_automl(
X_train, y_train, X_test, y_test,
problem_type, time_limit
)
else: # FLAML
results = AutoMLTrainer.train_flaml_automl(
X_train, y_train, X_test, y_test,
problem_type, time_limit
)
# Almacenar resultados
st.session_state.automl_models[framework] = results
except Exception as e:
st.error(f"Error en entrenamiento AutoML: {str(e)}")
# Mostrar resultados si existen
if st.session_state.automl_models:
for framework, results in st.session_state.automl_models.items():
st.subheader(f"Resultados de {framework}")
if 'error' in results:
st.error(f"Error: {results['error']}")
continue
# Métricas principales
cols = st.columns(3)
with cols[0]:
st.metric(
"Tiempo de Entrenamiento",
f"{results['training_time']:.2f}s"
)
with cols[1]:
if problem_type == 'classification':
st.metric("Accuracy", f"{results['test_accuracy']:.4f}")
else:
st.metric("R² Score", f"{results['test_r2']:.4f}")
with cols[2]:
if problem_type == 'classification':
st.metric(
"F1 Score",
f"{results['classification_report']['macro avg']['f1-score']:.4f}"
)
else:
st.metric("RMSE", f"{results['test_rmse']:.4f}")
# Explicación del modelo
if st.button("Generar Explicación", key=f"{framework}_explain"):
if 'gemini_api_key' in st.session_state:
with st.spinner("Generando explicación..."):
explainer = initialize_gemini_explainer()
model_info = {
'name': framework,
'problem_type': problem_type,
'hyperparameters': results.get('hyperparameters', 'N/A'),
'performance_metric': results.get('test_accuracy', results.get('test_r2', 'N/A')),
'training_time': results.get('training_time', 'N/A')
}
explanation = explainer.generate_model_explanation(model_info)
st.markdown(explanation)
else:
st.warning("Configura tu API key de Gemini para generar explicaciones")
# Análisis SHAP
if st.button("Mostrar Análisis SHAP", key=f"{framework}_shap"):
create_shap_analysis_dashboard(
results['best_model'],
X,
problem_type
)
# Descarga del modelo
if st.button("Descargar Modelo", key=f"{framework}_download"):
modelo_data = descargar_modelo_h2o(results['best_model'], framework)
if modelo_data:
st.download_button(
label=f"Descargar {framework}",
data=modelo_data,
file_name=f"{framework.lower().replace(' ', '_')}_{int(time.time())}.zip",
mime="application/zip",
key=f"{framework}_download_button"
)
def show_train():
"""
Función principal para mostrar la interfaz de entrenamiento de modelos
"""
st.title("Desarrollo de Modelos")
# Verificar preparación de datos
if 'prepared_data' not in st.session_state:
st.warning("⚠️ No hay datos preparados en la sesión. Por favor, carga y prepara los datos primero.")
return
if st.session_state.prepared_data is None:
st.warning("⚠️ Los datos preparados están vacíos. Por favor, verifica la preparación de datos.")
return
# Inicializar 'trained_models' si no existe
if 'trained_models' not in st.session_state:
st.session_state.trained_models = {}
train = st.session_state.prepared_data
try:
# Seleccionar características y objetivo
X, y = select_features_and_target(train)
if X is None or y is None:
return
# Verificar valores nulos
if X.isnull().sum().sum() > 0 or y.isnull().sum() > 0:
st.error("Hay valores nulos en los datos. Por favor, vuelve a la página de preparación y maneja los valores faltantes.")
return
# Determinar tipo de problema
problem_type = determine_problem_type(y)
# Configuraciones de entrenamiento
col1, col2, col3 = st.columns(3)
with col1:
test_size = st.slider("Tamaño del conjunto de prueba:", 0.1, 0.5, 0.2)
with col2:
random_state = st.number_input("Random State:", min_value=0, value=42)
with col3:
n_folds = st.number_input("Número de folds para validación cruzada:", min_value=2, max_value=10, value=5)
st.session_state.n_folds = n_folds
# Preprocesamiento de datos para clasificación
if problem_type == 'classification':
y_original = y
le = LabelEncoder()
y = pd.Series(le.fit_transform(y))
st.session_state.label_encoder = le
st.write("Mapeo de clases:", dict(enumerate(le.classes_)))
# Visualizar distribución de clases
fig = create_class_distribution_plot(y_original)
st.plotly_chart(fig)
# Manejar desbalanceo de clases
X, y = handle_data_balancing(X, y, random_state)
show_automl_section(X, y, problem_type)
# Obtener opciones de modelos
model_options = get_model_options(problem_type)
# Gestionar modelos seleccionados
if 'selected_models' not in st.session_state:
st.session_state.selected_models = []
selected_models = st.multiselect(
"Selecciona los modelos a entrenar:",
list(model_options.keys()),
default=st.session_state.selected_models
)
st.session_state.selected_models = selected_models
if not selected_models:
st.warning("Por favor selecciona al menos un modelo para entrenar.")
return
# Configurar re-entrenamiento
if st.button("Reentrenar Modelos"):
st.session_state.retrain_models = True
else:
# Solo establecer a False si no está ya en sesión
if 'retrain_models' not in st.session_state:
st.session_state.retrain_models = False
# Dividir datos
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=test_size, random_state=random_state,
stratify=y if problem_type == 'classification' else None
)
# Crear columnas para mostrar resultados de modelos
cols = st.columns(len(selected_models))
# Entrenar y mostrar resultados de cada modelo
for i, model_name in enumerate(selected_models):
with cols[i]:
st.write(f"### {model_name}")
# Verificar si el modelo ya está entrenado y si no se solicita reentrenamiento
if (model_name not in st.session_state.trained_models) or st.session_state.retrain_models:
# Entrenar modelo
trained_model = train_model_pipeline(
X_train=X_train,
y_train=y_train,
model_config=model_options[model_name],
X_test=X_test,
y_test=y_test,
cv=st.session_state.n_folds,
scoring=None,
random_state=random_state, # Pasar random_state
n_jobs=-1, # Para usar todos los núcleos disponibles
verbose=1
)
# Almacenar el modelo entrenado en session_state
if 'trained_models' not in st.session_state:
st.session_state.trained_models = {}
st.session_state.trained_models[model_name] = trained_model
else:
# Reutilizar el modelo ya entrenado
trained_model = st.session_state.trained_models[model_name]
# Mostrar resultados del modelo
show_model_results(
model_name,
problem_type,
y_test,
cols[i],
trained_model
)
except Exception as e:
st.error(f"Error inesperado: {str(e)}")
def show_model_results(model_name, problem_type, y_test, col, trained_model):
"""
Mostrar resultados detallados de un modelo entrenado
Args:
model_name (str): Nombre del modelo
problem_type (str): Tipo de problema
y_test (pd.Series): Datos de prueba
col (streamlit.delta_generator.DeltaGenerator): Columna de Streamlit
trained_model (dict): Resultados del entrenamiento
"""
with col:
# Verificar si el modelo está en la sesión de modelos entrenados
if model_name in st.session_state.trained_models:
results = st.session_state.trained_models[model_name]
# Verificar si hubo un error durante el entrenamiento
if 'error' in results:
st.error(results['error'])
return
# Mostrar métricas de rendimiento
if 'training_time' in results:
st.success(f"¡Entrenamiento completado en {results['training_time']:.2f} segundos!")
st.write("Mejores parámetros:", results.get('best_params', 'N/A'))
# Métricas específicas según el tipo de problema
if problem_type == 'classification':
st.write("Accuracy:", results.get('test_accuracy', 'N/A'))
st.text("Reporte de clasificación:")
st.text(pd.DataFrame(results.get('classification_report', {})).transpose().to_string())
else:
st.write("R² Score:", results.get('test_r2', 'N/A'))
st.write("RMSE:", results.get('test_rmse', 'N/A'))
# Sección de explicación de parámetros con Gemini
st.write("---")
st.write("### Explicación de Parámetros")
# Verificar disponibilidad de API key de Gemini
has_api_key = 'gemini_api_key' in st.session_state and st.session_state.gemini_api_key
if not has_api_key:
st.warning("Configure su API key de Gemini en la sección superior izquierda para usar la explicación automática de los parámetros.")
# Inicializar el explainer si no lo has hecho ya
if 'explainer' not in st.session_state:
st.session_state.explainer = initialize_gemini_explainer()
explainer = st.session_state.explainer
# Inicializar explicaciones en el estado de la sesión
if 'model_explanations' not in st.session_state:
st.session_state.model_explanations = {}
# Botón para generar explicación
explain_button = st.button(
"Explicar Parámetros",
disabled=not has_api_key,
key=f"explain_{model_name}"
)
# Mostrar explicación existente si está disponible
if model_name in st.session_state.model_explanations:
st.markdown(st.session_state.model_explanations[model_name])
# Inicializar el explainer solo cuando se necesite
if 'explain_button' in locals() and explain_button and has_api_key:
explainer = initialize_gemini_explainer()
if explainer: # Verificar que el explainer se inicializó correctamente
try:
with st.spinner("Generando explicación..."):
model_info = {
'name': model_name,
'problem_type': problem_type,
'hyperparameters': results.get('hyperparameters', 'N/A'),
'performance_metric': results.get('test_accuracy', results.get('test_r2', 'N/A')),
'training_time': results.get('training_time', 'N/A')
}
explanation = explainer.generate_model_explanation(model_info)
# Almacenar explicación
st.session_state.model_explanations[model_name] = explanation
# Mostrar explicación
st.markdown(explanation)
except Exception as e:
st.error(f"Error al generar la explicación: {str(e)}")
else:
st.error("No se pudo inicializar el explicador de Gemini")
# Sección de análisis SHAP
st.write("---")
st.write("### Análisis SHAP")
if st.button("Mostrar Análisis SHAP", key=f"shap_button_{model_name}"):
try:
# Obtener datos preparados
X = st.session_state.prepared_data[st.session_state.feature_cols]
# Crear dashboard de análisis SHAP
create_shap_analysis_dashboard(
results['best_model'], # Usar el mejor modelo
X,
problem_type
)
except Exception as e:
st.error(f"Error en el análisis SHAP: {str(e)}")
# Sección de descarga del modelo
st.write("---")
st.write("### Descarga del modelo")
# Generar nombre de archivo
model_file_key = f"model_file_{model_name}"
if model_file_key not in st.session_state:
st.session_state[model_file_key] = f"{model_name.lower().replace(' ', '_')}_{int(time.time())}.pkl"
# Input para nombre de archivo
model_name_input = st.text_input(
"Nombre del archivo:",
value=st.session_state[model_file_key],
key=f"name_input_{model_name}"
)
# Botón de descarga
model_buffer = io.BytesIO()
pickle.dump(results['best_model'], model_buffer) # Guardar el mejor modelo
model_buffer.seek(0)
download_key = f"download_{model_name}"
st.download_button(
label="Descargar Modelo",
data=model_buffer,
file_name=model_name_input,
mime="application/octet-stream",
key=download_key
)
# # Botón de descarga
# modelo_data = descargar_modelo_h2o(results['best_model'], model_name)
# if modelo_data:
# st.download_button(
# label="Descargar Modelo",
# data=modelo_data,
# file_name=model_name_input,
# mime="application/zip",
# key=f"download_{model_name}"
# ) |