CoolFace
Apppublic

Axwell15/AN_proyecto

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
app.py17 linesDownload Raw Back to root
1import gradio as gr2from iris_app import iris_interface3from housing_app import housing_interface4 5with gr.Blocks() as main_demo:6    gr.Markdown("<h1 style='text-align: center;'>Menú de Interfaces de Machine Learning</h1>")7    gr.Markdown("<p style='text-align: center;'>Seleccione una pestaña de su preferencia:</p>")8 9    with gr.Tabs():10        with gr.TabItem("🪻 Regresión Logística Clasificación tipo de flor Iris"):11            iris_interface()  12 13        with gr.TabItem("🏘️ Regresión Multivariada de Predicción de Viviendas"):14            housing_interface()15 16main_demo.launch(share=True)17