Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -74,20 +74,21 @@ def remove(element):
|
|
74 |
|
75 |
|
76 |
|
77 |
-
|
78 |
|
79 |
-
|
80 |
|
81 |
-
|
82 |
|
|
|
83 |
|
84 |
-
ouputbox = gr.Textbox(label="
|
85 |
|
86 |
iface = gr.Interface(
|
87 |
fn=inputter,
|
88 |
-
inputs=[
|
89 |
outputs=ouputbox,
|
90 |
-
title="
|
91 |
)
|
92 |
|
93 |
iface.launch()
|
|
|
74 |
|
75 |
|
76 |
|
77 |
+
databox = gr.Textbox(label="Enter your data type here:", placeholder="e.g., images, genome, binary")
|
78 |
|
79 |
+
augbox = gr.Textbox(label="Enter your data augmentation methods here:", placeholder="Enter as list e.g., [flip, rotate]")
|
80 |
|
81 |
+
machinebox = gr.Textbox(label="Enter your machine type:", placeholder="e.g., transformer, SVM, CNN")
|
82 |
|
83 |
+
featurebox = gr.Textbox(label="Enter your features type:", placeholder="e.g., KL-expansion, Lagragians")
|
84 |
|
85 |
+
ouputbox = gr.Textbox(label=":", placeholder="Homework is due on MM-DD-YYYY at HH:MM", lines = 10)
|
86 |
|
87 |
iface = gr.Interface(
|
88 |
fn=inputter,
|
89 |
+
inputs=[databox, augbox, featurebox, machinebox],
|
90 |
outputs=ouputbox,
|
91 |
+
title="Cancer Metapipeline",
|
92 |
)
|
93 |
|
94 |
iface.launch()
|