Update app.py
Browse files
app.py
CHANGED
|
@@ -113,7 +113,7 @@ with gr.Blocks() as demo:
|
|
| 113 |
with gr.TabItem("Baseline Trainer") as baseline_trainer:
|
| 114 |
with gr.Row():
|
| 115 |
with gr.Column():
|
| 116 |
-
title = gr.Markdown(""" ## Train a supervised baseline model""")
|
| 117 |
description = gr.Markdown("This app trains a model and pushes it to your Hugging Face Hub Profile.")
|
| 118 |
dataset = gr.File(label = "CSV Dataset")
|
| 119 |
column = gr.Text(label = "Enter target variable:")
|
|
@@ -132,7 +132,7 @@ with gr.Blocks() as demo:
|
|
| 132 |
with gr.TabItem("Analyze") as analyze:
|
| 133 |
with gr.Row():
|
| 134 |
with gr.Column():
|
| 135 |
-
title = gr.Markdown(""" ## Analyze Dataset """)
|
| 136 |
description = gr.Markdown("Analyze a dataset or predictive variables against a target variable in a dataset (enter a column name to column section if you want to compare against target value). You can also do pairwise analysis, but it has quadratic complexity.")
|
| 137 |
dataset = gr.File(label = "CSV Dataset")
|
| 138 |
column = gr.Text(label = "Compare dataset against a target variable (Optional)")
|
|
|
|
| 113 |
with gr.TabItem("Baseline Trainer") as baseline_trainer:
|
| 114 |
with gr.Row():
|
| 115 |
with gr.Column():
|
| 116 |
+
title = gr.Markdown(""" ## Train a supervised baseline model 🪄""")
|
| 117 |
description = gr.Markdown("This app trains a model and pushes it to your Hugging Face Hub Profile.")
|
| 118 |
dataset = gr.File(label = "CSV Dataset")
|
| 119 |
column = gr.Text(label = "Enter target variable:")
|
|
|
|
| 132 |
with gr.TabItem("Analyze") as analyze:
|
| 133 |
with gr.Row():
|
| 134 |
with gr.Column():
|
| 135 |
+
title = gr.Markdown(""" ## Analyze Dataset 🪄""")
|
| 136 |
description = gr.Markdown("Analyze a dataset or predictive variables against a target variable in a dataset (enter a column name to column section if you want to compare against target value). You can also do pairwise analysis, but it has quadratic complexity.")
|
| 137 |
dataset = gr.File(label = "CSV Dataset")
|
| 138 |
column = gr.Text(label = "Compare dataset against a target variable (Optional)")
|