Vermeer commited on
Commit
b657d51
1 Parent(s): c7b5ef8
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ import tensorflow as tf
4
 
5
  #model = joblib.load('model.pkl')
6
  model = tf.keras.models.load_model('best_model.h5')
7
- categories = ["Normal", "Tubercolosis", "Pneumonia"]
8
 
9
  def classify(img):
10
  img = img.reshape((-1, 224, 224, 3))
 
4
 
5
  #model = joblib.load('model.pkl')
6
  model = tf.keras.models.load_model('best_model.h5')
7
+ categories = ["Normal","Pneumonia", "Tubercolosis"]
8
 
9
  def classify(img):
10
  img = img.reshape((-1, 224, 224, 3))