gloignon commited on
Commit
3571cd4
·
verified ·
1 Parent(s): f8825b7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -45,12 +45,11 @@ def text_editor_app():
45
  identifiers = []
46
  texts = []
47
  with gr.Row():
48
- for i in range(4): # Assuming 4 entries
49
- with gr.Column():
50
- id_input = gr.Textbox(label=f"Identifier {i+1}")
51
- text_input = gr.Textbox(label=f"Text {i+1}")
52
- identifiers.append(id_input)
53
- texts.append(text_input)
54
 
55
  analyze_button = gr.Button("Run Analysis")
56
  output_plot = gr.Plot(label="PCA Visualization")
 
45
  identifiers = []
46
  texts = []
47
  with gr.Row():
48
+ for i in range(6): # Assuming 6 entries
49
+ id_input = gr.Textbox(label=f"Identifier {i+1}")
50
+ text_input = gr.Textbox(label=f"Text {i+1}")
51
+ identifiers.append(id_input)
52
+ texts.append(text_input)
 
53
 
54
  analyze_button = gr.Button("Run Analysis")
55
  output_plot = gr.Plot(label="PCA Visualization")