katielink commited on
Commit
4e276c7
β€’
1 Parent(s): 8d93feb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -3
app.py CHANGED
@@ -1,5 +1,7 @@
1
  import gradio as gr
2
 
 
 
3
  CITATION_BUTTON_TEXT = """@article{2022,
4
  title={Healthsheet: Development of a Transparency Artifact for Health Datasets},
5
  url={http://dx.doi.org/10.1145/3531146.3533239},
@@ -15,15 +17,21 @@ with gr.Blocks() as demo:
15
  gr.HTML("<h1><center>Healthsheet Creator! πŸͺ„πŸ“„<h1><center>")
16
  gr.HTML('<h3><center>Create a healthsheet based on <a href="https://arxiv.org/abs/2202.13028">Rostamzadeh et al. (2022) <i>"Healthsheet: Development of a Transparency Artifact for Health Datasets"</i></a><h4><center>')
17
 
18
- with gr.Column():
19
-
20
- with gr.Row():
 
 
 
 
21
  with gr.Accordion("Citation", open=False):
22
  citation_button = gr.Textbox(
23
  value=CITATION_BUTTON_TEXT,
24
  lines=9,
25
  elem_id="citation-button",
26
  ).style(show_copy_button=True)
 
 
27
 
28
  with gr.Tab("General Information"):
29
  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).")
 
1
  import gradio as gr
2
 
3
+ ABSTRACT_TEXT = "Machine learning (ML) approaches have demonstrated promising results in a wide range of healthcare applications. Data plays a crucial role in developing ML-based healthcare systems that directly affect people's lives. Many of the ethical issues surrounding the use of ML in healthcare stem from structural inequalities underlying the way we collect, use, and handle data. Developing guidelines to improve documentation practices regarding the creation, use, and maintenance of ML healthcare datasets is therefore of critical importance. In this work, we introduce Healthsheet, a contextualized adaptation of the original datasheet questionnaire ~\cite{gebru2018datasheets} for health-specific applications. Through a series of semi-structured interviews, we adapt the datasheets for healthcare data documentation. As part of the Healthsheet development process and to understand the obstacles researchers face in creating datasheets, we worked with three publicly-available healthcare datasets as our case studies, each with different types of structured data: Electronic health Records (EHR), clinical trial study data, and smartphone-based performance outcome measures. Our findings from the interviewee study and case studies show 1) that datasheets should be contextualized for healthcare, 2) that despite incentives to adopt accountability practices such as datasheets, there is a lack of consistency in the broader use of these practices 3) how the ML for health community views datasheets and particularly \textit{Healthsheets} as diagnostic tool to surface the limitations and strength of datasets and 4) the relative importance of different fields in the datasheet to healthcare concerns."
4
+
5
  CITATION_BUTTON_TEXT = """@article{2022,
6
  title={Healthsheet: Development of a Transparency Artifact for Health Datasets},
7
  url={http://dx.doi.org/10.1145/3531146.3533239},
 
17
  gr.HTML("<h1><center>Healthsheet Creator! πŸͺ„πŸ“„<h1><center>")
18
  gr.HTML('<h3><center>Create a healthsheet based on <a href="https://arxiv.org/abs/2202.13028">Rostamzadeh et al. (2022) <i>"Healthsheet: Development of a Transparency Artifact for Health Datasets"</i></a><h4><center>')
19
 
20
+ with gr.Row():
21
+ with gr.Accordion("Abstract", open=True):
22
+ abstract_button = gr.Textbox(
23
+ value = ABSTRACT_TEXT,
24
+ lines = 5,
25
+ )
26
+ with gr.Row():
27
  with gr.Accordion("Citation", open=False):
28
  citation_button = gr.Textbox(
29
  value=CITATION_BUTTON_TEXT,
30
  lines=9,
31
  elem_id="citation-button",
32
  ).style(show_copy_button=True)
33
+
34
+ with gr.Column():
35
 
36
  with gr.Tab("General Information"):
37
  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).")