Spaces:
Paused
Paused
JacobLinCool
commited on
Commit
·
5459d70
1
Parent(s):
645c216
Update app.py
Browse files
app.py
CHANGED
@@ -79,14 +79,14 @@ with gr.Blocks() as app:
|
|
79 |
file_types=["zip"],
|
80 |
)
|
81 |
exp_dir = gr.Textbox(label="Experiment directory", visible=True)
|
82 |
-
preprocess_btn = gr.Button(
|
83 |
with gr.Column():
|
84 |
preprocess_output = gr.Textbox(label="Preprocessing output", lines=5)
|
85 |
|
86 |
with gr.Row():
|
87 |
with gr.Column():
|
88 |
extract_features_btn = gr.Button(
|
89 |
-
|
90 |
)
|
91 |
with gr.Column():
|
92 |
extract_features_output = gr.Textbox(
|
@@ -96,7 +96,7 @@ with gr.Blocks() as app:
|
|
96 |
with gr.Row():
|
97 |
with gr.Column():
|
98 |
download_expdir_btn = gr.Button(
|
99 |
-
|
100 |
)
|
101 |
with gr.Column():
|
102 |
download_expdir_output = gr.File(label="Download experiment directory")
|
|
|
79 |
file_types=["zip"],
|
80 |
)
|
81 |
exp_dir = gr.Textbox(label="Experiment directory", visible=True)
|
82 |
+
preprocess_btn = gr.Button(value="Preprocess", variant="primary")
|
83 |
with gr.Column():
|
84 |
preprocess_output = gr.Textbox(label="Preprocessing output", lines=5)
|
85 |
|
86 |
with gr.Row():
|
87 |
with gr.Column():
|
88 |
extract_features_btn = gr.Button(
|
89 |
+
value="Extract features", variant="primary"
|
90 |
)
|
91 |
with gr.Column():
|
92 |
extract_features_output = gr.Textbox(
|
|
|
96 |
with gr.Row():
|
97 |
with gr.Column():
|
98 |
download_expdir_btn = gr.Button(
|
99 |
+
value="Download experiment directory", variant="primary"
|
100 |
)
|
101 |
with gr.Column():
|
102 |
download_expdir_output = gr.File(label="Download experiment directory")
|