evijit HF Staff commited on
Commit
f88419d
·
verified ·
1 Parent(s): 5b66f80

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -827,7 +827,7 @@ with gr.Blocks(css=css) as demo:
827
 
828
  with gr.Row():
829
  # Make model_chooser visible by default since Detailed Scorecard is first tab
830
- # Set "StarCoder" as the default selected model
831
  model_chooser = gr.Dropdown(choices=[""] + list(models.keys()),
832
  label="Select AI System for Details",
833
  value="StarCoder2",
@@ -861,8 +861,8 @@ with gr.Blocks(css=css) as demo:
861
  category_chart = gr.Plot(value=initial_plot)
862
 
863
  # Make detailed scorecard tab visible by default
864
- # Initialize with StarCoder data
865
- default_model = "StarCoder"
866
  initial_scorecard_data = update_detailed_scorecard(default_model, category_choices)
867
 
868
  with gr.Column(visible=True) as detailed_scorecard_tab:
 
827
 
828
  with gr.Row():
829
  # Make model_chooser visible by default since Detailed Scorecard is first tab
830
+ # Set "StarCoder2" as the default selected model
831
  model_chooser = gr.Dropdown(choices=[""] + list(models.keys()),
832
  label="Select AI System for Details",
833
  value="StarCoder2",
 
861
  category_chart = gr.Plot(value=initial_plot)
862
 
863
  # Make detailed scorecard tab visible by default
864
+ # Initialize with StarCoder2 data
865
+ default_model = "StarCoder2"
866
  initial_scorecard_data = update_detailed_scorecard(default_model, category_choices)
867
 
868
  with gr.Column(visible=True) as detailed_scorecard_tab: