Spaces:
Sleeping
Sleeping
Update model.py
Browse files
model.py
CHANGED
@@ -43,7 +43,7 @@ def bone_net(img):
|
|
43 |
def brain_net(img):
|
44 |
lt = ['pituitary', 'notumor', 'meningioma', 'glioma']
|
45 |
img = cv2.resize(img,(224,224))
|
46 |
-
model = tf.keras.models.load_model("Models/
|
47 |
result = model.predict(np.array([img]))
|
48 |
ans = np.argmax(result)
|
49 |
return lt[ans]
|
@@ -59,7 +59,7 @@ def chest_net(img):
|
|
59 |
def Eye_net(img):
|
60 |
lt = ['glaucoma', 'normal', 'diabetic_retinopathy', 'cataract']
|
61 |
img = cv2.resize(img,(224,224))
|
62 |
-
model = tf.keras.models.load_model("Models/
|
63 |
result = model.predict(np.array([img]))
|
64 |
ans = np.argmax(result)
|
65 |
return lt[ans]
|
@@ -67,7 +67,7 @@ def Eye_net(img):
|
|
67 |
def kidney_net(img):
|
68 |
lt = ['Cyst', 'Tumor', 'Stone', 'Normal']
|
69 |
img = cv2.resize(img,(224,224))
|
70 |
-
model = tf.keras.models.load_model("Models/
|
71 |
result = model.predict(np.array([img]))
|
72 |
ans = np.argmax(result)
|
73 |
return lt[ans]
|
|
|
43 |
def brain_net(img):
|
44 |
lt = ['pituitary', 'notumor', 'meningioma', 'glioma']
|
45 |
img = cv2.resize(img,(224,224))
|
46 |
+
model = tf.keras.models.load_model("Models/brain.h5",compile=False)
|
47 |
result = model.predict(np.array([img]))
|
48 |
ans = np.argmax(result)
|
49 |
return lt[ans]
|
|
|
59 |
def Eye_net(img):
|
60 |
lt = ['glaucoma', 'normal', 'diabetic_retinopathy', 'cataract']
|
61 |
img = cv2.resize(img,(224,224))
|
62 |
+
model = tf.keras.models.load_model("Models/eye.h5",compile=False)
|
63 |
result = model.predict(np.array([img]))
|
64 |
ans = np.argmax(result)
|
65 |
return lt[ans]
|
|
|
67 |
def kidney_net(img):
|
68 |
lt = ['Cyst', 'Tumor', 'Stone', 'Normal']
|
69 |
img = cv2.resize(img,(224,224))
|
70 |
+
model = tf.keras.models.load_model("Models/kidney.h5",compile=False)
|
71 |
result = model.predict(np.array([img]))
|
72 |
ans = np.argmax(result)
|
73 |
return lt[ans]
|