Piraloco commited on
Commit
e921680
·
1 Parent(s): 0f249d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -111,11 +111,11 @@ interface = gr.Interface(
111
  fn=make_prediction,
112
  inputs=[
113
  # Input for rank
114
- gr.Dropdown(label="Rank", choices=ranks, default=ranks[0]),
115
  # Input for map
116
- gr.Dropdown(label="Map", choices=maps, default=maps[0]),
117
  # Input for agents
118
- gr.MultiSelect(label="Agent Picks (1-5)", choices=agents, default=[agents[0]]),
119
  ],
120
  outputs="text",
121
  )
 
111
  fn=make_prediction,
112
  inputs=[
113
  # Input for rank
114
+ gr.Dropdown(label="Rank", choices=ranks),
115
  # Input for map
116
+ gr.Dropdown(label="Map", choices=maps),
117
  # Input for agents
118
+ gr.MultiSelect(label="Agent Picks (1-5)", choices=agents),
119
  ],
120
  outputs="text",
121
  )