IlyasMoutawwakil HF staff commited on
Commit
6a1592c
β€’
1 Parent(s): 83abc20
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -76,10 +76,10 @@ with demo:
76
  gr.HTML("<center><h1>LLM Bar Race πŸ“ŠπŸƒβ€β™‚οΈ</h1></center>")
77
 
78
  with gr.Tabs():
79
- # with gr.TabItem(label="Pretrained Models"):
80
- # get_bar_chart(ModelType.PT.name)
81
- # with gr.TabItem(label="Instructions Finetuend Models"):
82
- # get_bar_chart(ModelType.IFT.name)
83
  with gr.TabItem(label="RLHF Models"):
84
  get_bar_chart(ModelType.RL.name, top_n=4)
85
 
 
76
  gr.HTML("<center><h1>LLM Bar Race πŸ“ŠπŸƒβ€β™‚οΈ</h1></center>")
77
 
78
  with gr.Tabs():
79
+ with gr.TabItem(label="Pretrained Models"):
80
+ get_bar_chart(ModelType.PT.name)
81
+ with gr.TabItem(label="Instructions Finetuend Models"):
82
+ get_bar_chart(ModelType.IFT.name)
83
  with gr.TabItem(label="RLHF Models"):
84
  get_bar_chart(ModelType.RL.name, top_n=4)
85