IlyasMoutawwakil HF staff gabrielmbmb HF staff commited on
Commit
db6e029
1 Parent(s): e08462b

Fix tab name typo (#1)

Browse files

- Fix tab name typo (6c57cb0925d3271b710467280baa8eb6c3c4be38)


Co-authored-by: Gabriel Martín Blázquez <gabrielmbmb@users.noreply.huggingface.co>

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