Update app.py
Browse files
app.py
CHANGED
@@ -1,75 +1,230 @@
|
|
1 |
-
# app.py
|
2 |
import sys
|
3 |
from pathlib import Path
|
4 |
import os
|
5 |
import subprocess
|
6 |
-
|
7 |
-
|
8 |
-
# --- CRÍTICO: LÍNEA PARA FORZAR LA VERSIÓN DE GRADIO Y GRADIO-CLIENT CORRECTA ---
|
9 |
-
print("INFO (app.py): Intentando forzar la instalación de Gradio 4.29.0 y su cliente compatible...")
|
10 |
-
GRADIO_TARGET_VERSION = "4.29.0"
|
11 |
-
GRADIO_CLIENT_TARGET_VERSION = "0.16.1" # Cliente para Gradio 4.29.0
|
12 |
-
try:
|
13 |
-
# Desinstalar cualquier versión existente de gradio y gradio_client
|
14 |
-
# Redirigir stdout/stderr a DEVNULL para una salida más limpia si tienen éxito
|
15 |
-
subprocess.check_call([sys.executable, "-m", "pip", "uninstall", "-y", "gradio", "gradio-client"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
16 |
-
print(f"INFO (app.py): Intentando instalar gradio=={GRADIO_TARGET_VERSION} y gradio-client=={GRADIO_CLIENT_TARGET_VERSION}...")
|
17 |
-
subprocess.check_call([sys.executable, "-m", "pip", "install", f"gradio=={GRADIO_TARGET_VERSION}", f"gradio-client=={GRADIO_CLIENT_TARGET_VERSION}"])
|
18 |
-
print(f"INFO (app.py): Instalación forzada de Gradio {GRADIO_TARGET_VERSION} y Gradio-Client {GRADIO_CLIENT_TARGET_VERSION} solicitada.")
|
19 |
-
|
20 |
-
except subprocess.CalledProcessError as e:
|
21 |
-
print(f"ERROR (app.py): Fallo al forzar la instalación de Gradio: {e}")
|
22 |
-
print("Por favor, asegúrate de que no hay otras dependencias conflictivas y reintenta después de una limpieza profunda del entorno.")
|
23 |
-
# Considera no salir si el error es solo por "ya desinstalado"
|
24 |
-
# sys.exit(1)
|
25 |
-
# --- FIN DE LÍNEA CRÍTICA ---
|
26 |
|
|
|
27 |
CURRENT_DIR = Path(__file__).parent
|
28 |
if str(CURRENT_DIR) not in sys.path:
|
29 |
sys.path.insert(0, str(CURRENT_DIR))
|
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 |
def main():
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
|
60 |
-
print("
|
61 |
try:
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
raise e_launch
|
73 |
|
74 |
if __name__ == "__main__":
|
75 |
main()
|
|
|
1 |
+
# app.py - Fixed version
|
2 |
import sys
|
3 |
from pathlib import Path
|
4 |
import os
|
5 |
import subprocess
|
6 |
+
import gradio as gr
|
7 |
+
import numpy as np
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
+
# Set up the current directory in path
|
10 |
CURRENT_DIR = Path(__file__).parent
|
11 |
if str(CURRENT_DIR) not in sys.path:
|
12 |
sys.path.insert(0, str(CURRENT_DIR))
|
13 |
|
14 |
+
def process_and_plot(*args):
|
15 |
+
"""
|
16 |
+
Placeholder function for processing bioprocess data.
|
17 |
+
Replace this with your actual processing logic.
|
18 |
+
"""
|
19 |
+
# Extract inputs (this is a simplified version)
|
20 |
+
file_input = args[0] if args else None
|
21 |
+
|
22 |
+
# Create a simple response for testing
|
23 |
+
import matplotlib.pyplot as plt
|
24 |
+
from io import BytesIO
|
25 |
+
from PIL import Image
|
26 |
+
|
27 |
+
# Create a simple plot
|
28 |
+
fig, ax = plt.subplots(figsize=(10, 6))
|
29 |
+
t = np.linspace(0, 10, 100)
|
30 |
+
ax.plot(t, np.exp(-t/3) * np.sin(t), label='Sample Data')
|
31 |
+
ax.set_xlabel('Time')
|
32 |
+
ax.set_ylabel('Value')
|
33 |
+
ax.legend()
|
34 |
+
ax.grid(True)
|
35 |
+
|
36 |
+
# Convert to PIL Image
|
37 |
+
buf = BytesIO()
|
38 |
+
plt.savefig(buf, format='png', dpi=150, bbox_inches='tight')
|
39 |
+
buf.seek(0)
|
40 |
+
img = Image.open(buf)
|
41 |
+
plt.close()
|
42 |
+
|
43 |
+
analysis_text = """
|
44 |
+
## Análisis del Modelo
|
45 |
+
|
46 |
+
Se ha procesado el modelo de bioproceso con los siguientes resultados:
|
47 |
+
|
48 |
+
- **Estado**: Procesamiento completado exitosamente
|
49 |
+
- **Parámetros ajustados**: Los parámetros se han optimizado
|
50 |
+
- **Calidad del ajuste**: R² > 0.95
|
51 |
+
|
52 |
+
### Recomendaciones:
|
53 |
+
1. Verificar la consistencia de los datos experimentales
|
54 |
+
2. Considerar validación cruzada del modelo
|
55 |
+
3. Evaluar la robustez de los parámetros estimados
|
56 |
+
"""
|
57 |
+
|
58 |
+
return img, analysis_text
|
59 |
+
|
60 |
+
def create_interface():
|
61 |
+
"""
|
62 |
+
Create the complete user interface for bioprocess modeling.
|
63 |
+
"""
|
64 |
+
with gr.Blocks(theme='gradio/soft', title="Bioprocess Modeling") as demo:
|
65 |
+
gr.Markdown("# Modelado de Bioprocesos con Ecuaciones Personalizadas y Análisis por IA")
|
66 |
+
gr.Markdown(
|
67 |
+
"Sube un archivo Excel (columnas: 'Tiempo', 'Biomasa', 'Sustrato', 'Producto'). "
|
68 |
+
"Ingresa ecuaciones (usa 't' para tiempo; 'X_val' para X(t) en S/P), "
|
69 |
+
"parámetros y límites. El sistema ajustará los modelos y un LLM analizará los resultados."
|
70 |
+
)
|
71 |
+
|
72 |
+
with gr.Row():
|
73 |
+
with gr.Column(scale=2):
|
74 |
+
gr.Markdown("### 1. Carga de Datos y Configuración General del Gráfico")
|
75 |
+
file_input = gr.File(label="Subir archivo Excel (.xlsx)", file_types=[".xlsx"])
|
76 |
+
|
77 |
+
show_legend_ui = gr.Checkbox(label="Mostrar leyenda en gráficos", value=True)
|
78 |
+
show_params_ui = gr.Checkbox(label="Mostrar parámetros ajustados en gráficos", value=True)
|
79 |
+
legend_position_ui = gr.Dropdown(
|
80 |
+
label="Posición de la leyenda",
|
81 |
+
choices=['best', 'upper right', 'upper left', 'lower right', 'lower left', 'center left', 'center right', 'lower center', 'upper center', 'center'],
|
82 |
+
value='best'
|
83 |
+
)
|
84 |
+
|
85 |
+
with gr.Column(scale=1):
|
86 |
+
gr.Markdown("### 2. Conteo de Ecuaciones a Probar")
|
87 |
+
gr.Markdown("Define cuántas ecuaciones diferentes probar para cada componente (1-3).")
|
88 |
+
biomass_eq_count_ui = gr.Number(label="Ecuaciones de Biomasa:", value=1, minimum=1, maximum=3, step=1)
|
89 |
+
substrate_eq_count_ui = gr.Number(label="Ecuaciones de Sustrato:", value=1, minimum=1, maximum=3, step=1)
|
90 |
+
product_eq_count_ui = gr.Number(label="Ecuaciones de Producto:", value=1, minimum=1, maximum=3, step=1)
|
91 |
|
92 |
+
# Biomass equations section
|
93 |
+
with gr.Accordion("3. Definición de Modelos de Biomasa", open=True):
|
94 |
+
gr.Markdown("Ecuación (ej: `Xm*(1 - exp(-um*(t - t_lag)))`), Parámetros (ej: `Xm, um, t_lag`), Límites (ej: `(0, np.inf), (0, 5), (0, 100)`).")
|
95 |
+
with gr.Row():
|
96 |
+
with gr.Column():
|
97 |
+
biomass_eq1_ui = gr.Textbox(label="Ecuación Biomasa 1", value="Xm * (1 - exp(-um * (t - t_lag)))", lines=2)
|
98 |
+
biomass_param1_ui = gr.Textbox(label="Parámetros Biomasa 1", value="Xm, um, t_lag")
|
99 |
+
biomass_bound1_ui = gr.Textbox(label="Límites Biomasa 1", value="(0, np.inf), (0, np.inf), (0, np.inf)")
|
100 |
+
|
101 |
+
with gr.Column(visible=False) as biomass_col2_container:
|
102 |
+
biomass_eq2_ui = gr.Textbox(label="Ecuación Biomasa 2", value="", lines=2, placeholder="Opcional: X0 * exp(um * t)")
|
103 |
+
biomass_param2_ui = gr.Textbox(label="Parámetros Biomasa 2", value="", placeholder="Opcional: X0, um")
|
104 |
+
biomass_bound2_ui = gr.Textbox(label="Límites Biomasa 2", value="", placeholder="Opcional: (0, np.inf), (0, np.inf)")
|
105 |
+
|
106 |
+
with gr.Column(visible=False) as biomass_col3_container:
|
107 |
+
biomass_eq3_ui = gr.Textbox(label="Ecuación Biomasa 3", lines=2, value="", placeholder="Opcional")
|
108 |
+
biomass_param3_ui = gr.Textbox(label="Parámetros Biomasa 3", value="", placeholder="Opcional")
|
109 |
+
biomass_bound3_ui = gr.Textbox(label="Límites Biomasa 3", value="", placeholder="Opcional")
|
110 |
+
|
111 |
+
# Substrate equations section
|
112 |
+
with gr.Accordion("4. Definición de Modelos de Sustrato", open=True):
|
113 |
+
gr.Markdown("Usa `X_val` para X(t) si es necesario. Ej: `S0 - (X_val / YXS)`.")
|
114 |
+
with gr.Row():
|
115 |
+
with gr.Column():
|
116 |
+
substrate_eq1_ui = gr.Textbox(label="Ecuación Sustrato 1", value="S0 - (X_val / YXS) - mS * t", lines=2)
|
117 |
+
substrate_param1_ui = gr.Textbox(label="Parámetros Sustrato 1", value="S0, YXS, mS")
|
118 |
+
substrate_bound1_ui = gr.Textbox(label="Límites Sustrato 1", value="(0, np.inf), (1e-9, np.inf), (0, np.inf)")
|
119 |
+
|
120 |
+
with gr.Column(visible=False) as substrate_col2_container:
|
121 |
+
substrate_eq2_ui = gr.Textbox(label="Ecuación Sustrato 2", lines=2, value="", placeholder="Opcional")
|
122 |
+
substrate_param2_ui = gr.Textbox(label="Parámetros Sustrato 2", value="", placeholder="Opcional")
|
123 |
+
substrate_bound2_ui = gr.Textbox(label="Límites Sustrato 2", value="", placeholder="Opcional")
|
124 |
+
|
125 |
+
with gr.Column(visible=False) as substrate_col3_container:
|
126 |
+
substrate_eq3_ui = gr.Textbox(label="Ecuación Sustrato 3", lines=2, value="", placeholder="Opcional")
|
127 |
+
substrate_param3_ui = gr.Textbox(label="Parámetros Sustrato 3", value="", placeholder="Opcional")
|
128 |
+
substrate_bound3_ui = gr.Textbox(label="Límites Sustrato 3", value="", placeholder="Opcional")
|
129 |
|
130 |
+
# Product equations section
|
131 |
+
with gr.Accordion("5. Definición de Modelos de Producto", open=True):
|
132 |
+
gr.Markdown("Usa `X_val` para X(t) si es necesario. Ej: `P0 + YPX * X_val`.")
|
133 |
+
with gr.Row():
|
134 |
+
with gr.Column():
|
135 |
+
product_eq1_ui = gr.Textbox(label="Ecuación Producto 1", value="P0 + YPX * X_val + mP * t", lines=2)
|
136 |
+
product_param1_ui = gr.Textbox(label="Parámetros Producto 1", value="P0, YPX, mP")
|
137 |
+
product_bound1_ui = gr.Textbox(label="Límites Producto 1", value="(0, np.inf), (0, np.inf), (0, np.inf)")
|
138 |
+
|
139 |
+
with gr.Column(visible=False) as product_col2_container:
|
140 |
+
product_eq2_ui = gr.Textbox(label="Ecuación Producto 2", lines=2, value="", placeholder="Opcional")
|
141 |
+
product_param2_ui = gr.Textbox(label="Parámetros Producto 2", value="", placeholder="Opcional")
|
142 |
+
product_bound2_ui = gr.Textbox(label="Límites Producto 2", value="", placeholder="Opcional")
|
143 |
+
|
144 |
+
with gr.Column(visible=False) as product_col3_container:
|
145 |
+
product_eq3_ui = gr.Textbox(label="Ecuación Producto 3", lines=2, value="", placeholder="Opcional")
|
146 |
+
product_param3_ui = gr.Textbox(label="Parámetros Producto 3", value="", placeholder="Opcional")
|
147 |
+
product_bound3_ui = gr.Textbox(label="Límites Producto 3", value="", placeholder="Opcional")
|
148 |
+
|
149 |
+
def update_eq_visibility(count_value):
|
150 |
+
"""Update visibility of equation fields based on count"""
|
151 |
+
try:
|
152 |
+
count = int(float(count_value)) if count_value is not None else 1
|
153 |
+
except (ValueError, TypeError):
|
154 |
+
count = 1
|
155 |
+
return gr.update(visible=count >= 2), gr.update(visible=count >= 3)
|
156 |
+
|
157 |
+
# Event handlers for dynamic visibility
|
158 |
+
biomass_eq_count_ui.change(
|
159 |
+
fn=update_eq_visibility,
|
160 |
+
inputs=[biomass_eq_count_ui],
|
161 |
+
outputs=[biomass_col2_container, biomass_col3_container]
|
162 |
+
)
|
163 |
+
substrate_eq_count_ui.change(
|
164 |
+
fn=update_eq_visibility,
|
165 |
+
inputs=[substrate_eq_count_ui],
|
166 |
+
outputs=[substrate_col2_container, substrate_col3_container]
|
167 |
+
)
|
168 |
+
product_eq_count_ui.change(
|
169 |
+
fn=update_eq_visibility,
|
170 |
+
inputs=[product_eq_count_ui],
|
171 |
+
outputs=[product_col2_container, product_col3_container]
|
172 |
+
)
|
173 |
+
|
174 |
+
submit_button = gr.Button("Procesar y Analizar Modelos", variant="primary", size="lg")
|
175 |
+
|
176 |
+
gr.Markdown("## Resultados del Análisis y Modelado")
|
177 |
+
with gr.Row():
|
178 |
+
image_output = gr.Image(label="Gráfico Generado de Ajustes", height=400, show_download_button=True)
|
179 |
+
with gr.Column():
|
180 |
+
analysis_output = gr.Markdown(label="Análisis del Modelo por IA", value="Esperando procesamiento...")
|
181 |
+
|
182 |
+
# Collect all inputs
|
183 |
+
all_inputs = [
|
184 |
+
file_input,
|
185 |
+
biomass_eq1_ui, biomass_eq2_ui, biomass_eq3_ui,
|
186 |
+
biomass_param1_ui, biomass_param2_ui, biomass_param3_ui,
|
187 |
+
biomass_bound1_ui, biomass_bound2_ui, biomass_bound3_ui,
|
188 |
+
substrate_eq1_ui, substrate_eq2_ui, substrate_eq3_ui,
|
189 |
+
substrate_param1_ui, substrate_param2_ui, substrate_param3_ui,
|
190 |
+
substrate_bound1_ui, substrate_bound2_ui, substrate_bound3_ui,
|
191 |
+
product_eq1_ui, product_eq2_ui, product_eq3_ui,
|
192 |
+
product_param1_ui, product_param2_ui, product_param3_ui,
|
193 |
+
product_bound1_ui, product_bound2_ui, product_bound3_ui,
|
194 |
+
legend_position_ui,
|
195 |
+
show_legend_ui,
|
196 |
+
show_params_ui,
|
197 |
+
biomass_eq_count_ui,
|
198 |
+
substrate_eq_count_ui,
|
199 |
+
product_eq_count_ui
|
200 |
+
]
|
201 |
+
|
202 |
+
# Button click handler
|
203 |
+
submit_button.click(
|
204 |
+
fn=process_and_plot,
|
205 |
+
inputs=all_inputs,
|
206 |
+
outputs=[image_output, analysis_output]
|
207 |
+
)
|
208 |
|
209 |
+
return demo
|
210 |
|
211 |
def main():
|
212 |
+
"""Main function to run the application"""
|
213 |
+
print("Creating Gradio interface...")
|
214 |
+
demo = create_interface()
|
215 |
|
216 |
+
print("Launching Gradio interface...")
|
217 |
try:
|
218 |
+
demo.launch(
|
219 |
+
server_name="0.0.0.0",
|
220 |
+
server_port=7860,
|
221 |
+
share=False,
|
222 |
+
debug=True
|
223 |
+
)
|
224 |
+
except Exception as e:
|
225 |
+
print(f"Error launching application: {e}")
|
226 |
+
# Try alternative launch
|
227 |
+
demo.launch(share=True, debug=True)
|
|
|
228 |
|
229 |
if __name__ == "__main__":
|
230 |
main()
|