simon3456 commited on
Commit
f1532e4
1 Parent(s): d7d80b5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -4,8 +4,8 @@ import requests
4
  import streamlit as st
5
 
6
  """
7
- # HeartNet
8
- This is a classifier for images of 12-lead EKGs. It will attempt to detect whether the EKG indicates an acute MI. It was trained on simulated images.
9
  """
10
 
11
  def predict(img):
@@ -14,7 +14,6 @@ def predict(img):
14
  # st.write(learn_inf.predict(img))
15
 
16
  f"""
17
- ## This **{'is ' if pred == 'mi' else 'is not'}** an MI (heart attack).
18
  ### Rediction result: {pred}
19
  ### Probability of {pred}: {probs[key].item()*100: .2f}%
20
  """
 
4
  import streamlit as st
5
 
6
  """
7
+ # Healthy vs. Diseased Leaf
8
+ This is a classifier for leaf images. It will try to detect whether a leaf is healthy or diseased. It is trained on simulated images.
9
  """
10
 
11
  def predict(img):
 
14
  # st.write(learn_inf.predict(img))
15
 
16
  f"""
 
17
  ### Rediction result: {pred}
18
  ### Probability of {pred}: {probs[key].item()*100: .2f}%
19
  """