mervenoyan commited on
Commit
92f9233
1 Parent(s): d2a61f1

simplified UI

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -117,7 +117,7 @@ with gr.Blocks() as demo:
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:")
120
- pushing_desc = gr.Markdown("This app needs your Hugging Face Hub token and a unique name for your dataset report.")
121
  token = gr.Textbox(label = "Your Hugging Face Token")
122
  inference_run = gr.Button("Train")
123
  inference_progress = gr.StatusTracker(cover_container=True)
@@ -138,7 +138,7 @@ with gr.Blocks() as demo:
138
  column = gr.Text(label = "Compare dataset against a target variable (Optional)")
139
  pairwise = gr.Radio(["off", "on"], label = "Enable pairwise analysis")
140
  token = gr.Textbox(label = "Your Hugging Face Token")
141
- pushing_desc = gr.Markdown("This app needs your Hugging Face Hub token and a unique repository name for your dataset report.")
142
  inference_run = gr.Button("Infer")
143
  inference_progress = gr.StatusTracker(cover_container=True)
144
  outcome = gr.outputs.Textbox()
 
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:")
120
+ pushing_desc = gr.Markdown("This app needs your Hugging Face Hub token.")
121
  token = gr.Textbox(label = "Your Hugging Face Token")
122
  inference_run = gr.Button("Train")
123
  inference_progress = gr.StatusTracker(cover_container=True)
 
138
  column = gr.Text(label = "Compare dataset against a target variable (Optional)")
139
  pairwise = gr.Radio(["off", "on"], label = "Enable pairwise analysis")
140
  token = gr.Textbox(label = "Your Hugging Face Token")
141
+ pushing_desc = gr.Markdown("This app needs your Hugging Face Hub token.")
142
  inference_run = gr.Button("Infer")
143
  inference_progress = gr.StatusTracker(cover_container=True)
144
  outcome = gr.outputs.Textbox()