Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -118,7 +118,7 @@ with gr.Blocks() as demo:
|
|
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)
|
124 |
|
@@ -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.")
|
142 |
inference_run = gr.Button("Infer")
|
143 |
inference_progress = gr.StatusTracker(cover_container=True)
|
144 |
outcome = gr.outputs.Textbox()
|
|
|
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](https://huggingface.co/settings/tokens)")
|
122 |
inference_run = gr.Button("Train")
|
123 |
inference_progress = gr.StatusTracker(cover_container=True)
|
124 |
|
|
|
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. You can find your token [here](https://huggingface.co/settings/tokens)")
|
142 |
inference_run = gr.Button("Infer")
|
143 |
inference_progress = gr.StatusTracker(cover_container=True)
|
144 |
outcome = gr.outputs.Textbox()
|