milewire commited on
Commit
7fa480d
·
verified ·
1 Parent(s): 392b804

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -8
app.py CHANGED
@@ -223,7 +223,7 @@ CQI = 11"""
223
  # UI
224
  # =========================
225
 
226
- with gr.Blocks(theme=gr.themes.Soft()) as demo:
227
 
228
  gr.Markdown("""
229
  # UL Interference Analyzer
@@ -231,13 +231,12 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
231
  AI-assisted LTE and 5G uplink interference analysis using KPI and PM counter indicators.
232
  """)
233
 
234
- with gr.Row():
235
-
236
- vendor = gr.Dropdown(
237
- choices=["Ericsson", "Nokia", "Samsung"],
238
- value="Ericsson",
239
- label="RAN Vendor"
240
- )
241
 
242
  data_input = gr.Textbox(
243
  lines=14,
 
223
  # UI
224
  # =========================
225
 
226
+ with gr.Blocks(theme=gr.themes.Default()) as demo:
227
 
228
  gr.Markdown("""
229
  # UL Interference Analyzer
 
231
  AI-assisted LTE and 5G uplink interference analysis using KPI and PM counter indicators.
232
  """)
233
 
234
+ vendor = gr.Dropdown(
235
+ choices=["Ericsson", "Nokia", "Samsung"],
236
+ value="Ericsson",
237
+ label="RAN Vendor",
238
+ container=False
239
+ )
 
240
 
241
  data_input = gr.Textbox(
242
  lines=14,