You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Fallback: use Ray cluster info if API data not available
@@ -171,8 +171,8 @@ def cluster_tab():
171
171
"Nodo": f"⚙️ Worker {i+1} (ray-worker-{i+1})",
172
172
"CPU": f"{worker_cpu}",
173
173
"RAM (GB)": f"{worker_memory:.1f}",
174
-
"Estado": "🟢 Activo",
175
-
"Tipo": "Nodo de Procesamiento"
174
+
"Estado": "✅ Activo",
175
+
"Tipo": "Trabajador"
176
176
})
177
177
178
178
# Display table with current worker count info
@@ -183,7 +183,7 @@ def cluster_tab():
183
183
st.warning("No se pudo obtener información de los nodos del clúster")
184
184
185
185
# Detailed cluster information
186
-
withst.expander("🔍 Información Detallada del Clúster"):
186
+
withst.expander("📥 Información del Clúster"):
187
187
st.json(cluster_status)
188
188
189
189
else:
@@ -192,8 +192,8 @@ def cluster_tab():
192
192
193
193
# --- TRAINING TAB ---
194
194
deftraining_tab():
195
-
st.header("🚀 Entrenamiento Distribuido de Modelos ML")
196
-
st.markdown("Suba archivos CSV/JSON para procesamiento y entrenamiento distribuido en el clúster Ray")
195
+
st.header("🏋🏻♀️ Entrenamiento de Modelos de Maching Learning de forma distribuida.")
196
+
st.markdown("Seleccione el datasets deseados en formato CSV/JSON para realizar el procesamiento y entrenamiento distribuido de modelos de ML en el clúster de Ray.")
197
197
198
198
# Check for existing trained models (no longer shown in UI, but still fetched for prediction section)
199
199
try:
@@ -235,6 +235,8 @@ def training_tab():
235
235
else:
236
236
st.write(f" - {model_name}: Training completed")
237
237
238
+
st.info("💡 Para realizar el entrenamiento primero suba el datasets deseado y luego seleccione la variable objetivo...")
239
+
238
240
# Step 1: File Upload
239
241
st.subheader("1. 📁 Subir Archivos CSV/JSON")
240
242
@@ -393,7 +395,7 @@ def training_tab():
393
395
# Step 2: File Configuration and Training
394
396
# Only show configuration if files are successfully uploaded and have valid data
0 commit comments