Amit Kumar commited on
Commit
5758cda
·
1 Parent(s): 9ed6bea

adding html based to dos

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -91,11 +91,13 @@ with gr.Blocks(css = custom_css) as demo:
91
  1. If you are interested in collaborating with us, to explore more on the datasets, prompts or models, feel free to reach out to me on the mail address [E-mail](mailto:[email protected])""")
92
 
93
  gr.HTML("<h3> To do</h3>")
94
- gr.Markdown("""
95
- - [x] Launching the leaderboard
96
- - [ ] Add link to the huggingface models
97
- - [ ] Enhance the table layouts
98
- - [ ] Add more datasets
99
- - [ ] Add more prompting techniques
 
 
100
  """)
101
  demo.launch()
 
91
  1. If you are interested in collaborating with us, to explore more on the datasets, prompts or models, feel free to reach out to me on the mail address [E-mail](mailto:[email protected])""")
92
 
93
  gr.HTML("<h3> To do</h3>")
94
+ gr.HTML("""
95
+ <ul>
96
+ <li><input type="checkbox" checked disabled> Launching the leaderboard</li>
97
+ <li><input type="checkbox" disabled> Add link to the huggingface models</li>
98
+ <li><input type="checkbox" disabled> Enhance the table layouts</li>
99
+ <li><input type="checkbox" disabled> Add more datasets</li>
100
+ <li><input type="checkbox" disabled> Add more prompting techniques</li>
101
+ </ul>
102
  """)
103
  demo.launch()