Malikeh Ehghaghi
Add files via upload
c02fbf1 unverified
raw
history blame
3.85 kB
#!/usr/bin/env python
from __future__ import annotations
import gradio as gr
from dataset_list import DatasetList
DESCRIPTION = '# Explore Medical Question Answering Datasets 🏥'
NOTES = '''
'''
FOOTER = ''''''
def main():
dataset_list = DatasetList()
with gr.Blocks(css='style.css') as demo:
gr.Markdown(DESCRIPTION)
search_box = gr.Textbox(
label='Search Dataset Name',
placeholder=
'You can search for titles with regular expressions. e.g. (?<!sur)face',
max_lines=1)
case_sensitive = gr.Checkbox(label='Case Sensitive')
filter_names = gr.CheckboxGroup(choices=[
'Dataset',
'Data Link',
'Paper',
], label='Filter')
# data_type_names = [
# 'DNA', 'scRNA', 'mRNA', 'scRNA perturbation', 'RNA structure prediction', 'RNA language model', 'protein language model', 'protein structure prediction',
# 'protein generation', 'protein function prediction', 'protein fitness prediction', 'antibody structure prediction', 'antibody language model', 'molecules',
# 'ligand generation', 'reaction-to-enzyme', 'enzyme generation', 'epigenomic', 'molecular docking', 'peptide property prediction',
# ]
# data_types = gr.CheckboxGroup(choices=data_type_names,
# value=data_type_names,
# label='Type')
# years = ['2020', '2021', '2022', '2023']
# years_checkbox = gr.CheckboxGroup(choices=years, value=years, label='Year of Publication/Preprint')
# model_type_names = [
# 'GPT2', 'GPT-Neo', 'GPT-NeoX', 'ESM', 'BERT', 'RoBERTa', 'BART', 'T5', 'MPNN', 'diffusion', 'custom model'
# ]
# model_types = gr.CheckboxGroup(choices=model_type_names,
# value=model_type_names,
# label='Base Model')
search_button = gr.Button('Search')
number_of_datasets = gr.Textbox(label='Number of Datasets Found')
table = gr.HTML(show_label=False)
gr.Markdown(NOTES)
gr.Markdown(FOOTER)
demo.load(fn=dataset_list.render,
inputs=[
search_box,
case_sensitive,
filter_names
# data_types,
# years_checkbox,
#model_types
],
outputs=[
number_of_datasets,
table,
])
search_box.submit(fn=dataset_list.render,
inputs=[
search_box,
case_sensitive,
filter_names
# data_types,
# years_checkbox,
#model_types
],
outputs=[
number_of_datasets,
table,
])
search_button.click(fn=dataset_list.render,
inputs=[
search_box,
case_sensitive,
filter_names
# data_types,
# years_checkbox,
#model_types
],
outputs=[
number_of_datasets,
table,
])
demo.launch(enable_queue=True, share=False)
if __name__ == '__main__':
main()