Fix tab name typo

#1
by gabrielmbmb HF staff - opened
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -84,8 +84,8 @@ with demo:
84
  with gr.Tabs():
85
  with gr.TabItem(label="Pretrained Models"):
86
  get_bar_chart(ModelType.PT.name, title="Pretrained Models")
87
- with gr.TabItem(label="Instructions Finetuend Models"):
88
- get_bar_chart(ModelType.IFT.name, title="Instructions Finetuend Models")
89
  with gr.TabItem(label="RLHF Models"):
90
  get_bar_chart(ModelType.RL.name, top_n=4, title="RLHF Models")
91
 
 
84
  with gr.Tabs():
85
  with gr.TabItem(label="Pretrained Models"):
86
  get_bar_chart(ModelType.PT.name, title="Pretrained Models")
87
+ with gr.TabItem(label="Instructions Finetuned Models"):
88
+ get_bar_chart(ModelType.IFT.name, title="Instructions Finetuned Models")
89
  with gr.TabItem(label="RLHF Models"):
90
  get_bar_chart(ModelType.RL.name, top_n=4, title="RLHF Models")
91