michalisG commited on
Commit
e10ea16
1 Parent(s): d578f59
Files changed (3) hide show
  1. .gitignore +2 -0
  2. .idea/workspace.xml +1 -0
  3. app.py +1 -1
.gitignore CHANGED
@@ -2,3 +2,5 @@ venv/
2
  .env/
3
 
4
  .idea/
 
 
 
2
  .env/
3
 
4
  .idea/
5
+ .idea/workspace.xml
6
+ *.idea/
.idea/workspace.xml CHANGED
@@ -5,6 +5,7 @@
5
  </component>
6
  <component name="ChangeListManager">
7
  <list default="true" id="e2eb7b8e-f942-4b21-8057-83c784e0946e" name="Changes" comment="">
 
8
  <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
9
  <change beforePath="$PROJECT_DIR$/app.py" beforeDir="false" afterPath="$PROJECT_DIR$/app.py" afterDir="false" />
10
  </list>
 
5
  </component>
6
  <component name="ChangeListManager">
7
  <list default="true" id="e2eb7b8e-f942-4b21-8057-83c784e0946e" name="Changes" comment="">
8
+ <change beforePath="$PROJECT_DIR$/.gitignore" beforeDir="false" afterPath="$PROJECT_DIR$/.gitignore" afterDir="false" />
9
  <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
10
  <change beforePath="$PROJECT_DIR$/app.py" beforeDir="false" afterPath="$PROJECT_DIR$/app.py" afterDir="false" />
11
  </list>
app.py CHANGED
@@ -91,7 +91,7 @@ with gr.Blocks() as app:
91
  prediction_html = gr.HTML()
92
  with gr.Column(scale=2): # Try adjusting scale here
93
  gr.Markdown("# Risk Factors of Disease Complication")
94
- output_image = gr.Image()
95
  gr.Markdown(
96
  "Left arrows show what features tipping the scales to 'Survive', and right arrows show what features leaning towards 'Transplant/Death'.")
97
 
 
91
  prediction_html = gr.HTML()
92
  with gr.Column(scale=2): # Try adjusting scale here
93
  gr.Markdown("# Risk Factors of Disease Complication")
94
+ output_image = gr.Image(show_share_button=False)
95
  gr.Markdown(
96
  "Left arrows show what features tipping the scales to 'Survive', and right arrows show what features leaning towards 'Transplant/Death'.")
97