Stevenqaq commited on
Commit
130147a
1 Parent(s): 7e0bb7b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -4,7 +4,7 @@ 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
 
@@ -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
+ # Clothes type classification
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
 
 
14
  # st.write(learn_inf.predict(img))
15
 
16
  f"""
 
17
  ### Rediction result: {pred}
18
  ### Probability of {pred}: {probs[key].item()*100: .2f}%
19
  """