Fix new Frontend 17

This commit is contained in:
Urtzi Alfaro
2025-08-04 22:46:05 +02:00
parent 8b6e1ae339
commit 0154365bfc
6 changed files with 183 additions and 29 deletions

View File

@@ -107,8 +107,8 @@ export default function EnhancedTrainingProgress({ progress, onTimeout }: Traini
// Create progress steps based on current progress percentage
const steps = [
{ id: 'data_validation', threshold: 25, name: 'Validación' },
{ id: 'feature_engineering', threshold: 50, name: 'Características' },
{ id: 'model_training', threshold: 80, name: 'Entrenamiento' },
{ id: 'feature_engineering', threshold: 45, name: 'Características' },
{ id: 'model_training', threshold: 85, name: 'Entrenamiento' },
{ id: 'model_validation', threshold: 100, name: 'Validación' }
];