Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -60,12 +60,13 @@ with gr.Blocks() as demo:
|
|
60 |
gr.Markdown("""This demo allows you to play with the **TabPFN**.
|
61 |
Upload a .arff file, select an attribute to predict and the number of cross validation folds and get the ROC AUC OVO score for one seed.
|
62 |
""")
|
63 |
-
inp_file = gr.File(
|
64 |
-
label='Drop a .arff file.')
|
65 |
cv_folds = gr.Dropdown([2, 3, 4, 5], value=2, label='Number of CV folds')
|
66 |
out_text = gr.Markdown()
|
67 |
|
68 |
y_attribute = gr.Textbox(label='y attribute')
|
|
|
|
|
|
|
69 |
|
70 |
examples = gr.Examples(examples=['balance-scale.arff'],
|
71 |
inputs=[inp_file],
|
|
|
60 |
gr.Markdown("""This demo allows you to play with the **TabPFN**.
|
61 |
Upload a .arff file, select an attribute to predict and the number of cross validation folds and get the ROC AUC OVO score for one seed.
|
62 |
""")
|
|
|
|
|
63 |
cv_folds = gr.Dropdown([2, 3, 4, 5], value=2, label='Number of CV folds')
|
64 |
out_text = gr.Markdown()
|
65 |
|
66 |
y_attribute = gr.Textbox(label='y attribute')
|
67 |
+
|
68 |
+
inp_file = gr.File(
|
69 |
+
label='Drop a .arff file.')
|
70 |
|
71 |
examples = gr.Examples(examples=['balance-scale.arff'],
|
72 |
inputs=[inp_file],
|