katielink commited on
Commit
e76748f
β€’
1 Parent(s): a4f6a29

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -2
app.py CHANGED
@@ -2,8 +2,20 @@ import gradio as gr
2
 
3
  with gr.Blocks() as demo:
4
  gr.HTML("<h1><center>Healthsheet Creator!<h1><center>")
5
- gr.Markdown("Create a Healthsheet for your healthcare dataset.")
6
- input1 = gr.Textbox(label='first question here')
 
 
 
 
 
 
 
 
 
 
 
 
7
 
8
  if __name__ == "__main__":
9
  demo.launch()
 
2
 
3
  with gr.Blocks() as demo:
4
  gr.HTML("<h1><center>Healthsheet Creator!<h1><center>")
5
+ gr.HTML("<h3><center>Create a healthsheet based on the article (article citation here)<h4><center>")
6
+
7
+ with gr.Tab("General Information"):
8
+ gr.Markdown("If the answer to any of the questions in the questionnaire is N/A, please describe why the answer is N/A (e.g: data not being available).")
9
+ summary = gr.Textbox(label='Provide a 2 sentence summary of this dataset.', lines=5)
10
+ audit = gr.Textbox(label='Has the dataset been audited before? If yes, by whom and what are the results?', lines=5)
11
+
12
+ with gr.Tab("Dataset Versioning")
13
+ gr.Markdown("Version: A dataset will be considered to have a new version if there are major differences from a previous release. Some examples are a change in the number of patients/participants, or an increase in the data modalities covered.")
14
+ gr.Markdown("Sub-version: A sub-version tends to apply smaller scale changes to a given version. Some datasets in healthcare are released without labels and predefined tasks, or will be later labeled by researchers for specific tasks and problems, to form sub-versions of the dataset.")
15
+ gr.Markdown("The following set of questions clarifies the information about the current (latest) version of the dataset. It is important to report the rationale for labeling the data in any of the versions and sub-versions that this datasheet addresses, funding resources, and motivations behind each released version of the dataset.")
16
+
17
+ update = gr.Textbox(label='Does the dataset get released as static versions or is it dynamically updated? a. If static, how many versions of the dataset exist? b.If dynamic, how frequently is the dataset updated?')
18
+
19
 
20
  if __name__ == "__main__":
21
  demo.launch()