TabPFN commited on
Commit
cc56a6c
1 Parent(s): ee8b768

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -124,7 +124,7 @@ gr.Markdown("""This demo allows you to play with the **TabPFN**.
124
 
125
  with gr.Blocks() as demo:
126
  with gr.Row():
127
- with gr.Column(scale=1):
128
  inp_table = gr.DataFrame(type='numpy', value=upload_file(Path('iris.csv'), remove_entries=10)
129
  , headers=[''] * 3)
130
 
@@ -139,7 +139,7 @@ with gr.Blocks() as demo:
139
 
140
  #inp_table.change(fn=update_table, inputs=inp_table, outputs=inp_table)
141
 
142
- with gr.Column(scale=1):
143
 
144
  btn = gr.Button("Calculate Predictions")
145
  out_text = gr.Markdown()
 
124
 
125
  with gr.Blocks() as demo:
126
  with gr.Row():
127
+ with gr.Column():
128
  inp_table = gr.DataFrame(type='numpy', value=upload_file(Path('iris.csv'), remove_entries=10)
129
  , headers=[''] * 3)
130
 
 
139
 
140
  #inp_table.change(fn=update_table, inputs=inp_table, outputs=inp_table)
141
 
142
+ with gr.Column():
143
 
144
  btn = gr.Button("Calculate Predictions")
145
  out_text = gr.Markdown()