Fatser commited on
Commit
c0c8c53
·
verified ·
1 Parent(s): b29e958

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +31 -0
app.py ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from tensorflow.keras.models import load_model
3
+ from PIL import Image
4
+ import numpy as np
5
+
6
+ model=load_model("cinsiyet_2.h5")
7
+
8
+ def process_image(img):
9
+ img=img.resize((224,224))
10
+ img=np.array(img)
11
+ img=img/255.0
12
+ img=np.expand_dims(img,axis=0)
13
+ return img
14
+
15
+ st.title("Cinsiyet tahmin modeli")
16
+ st.write("Resim sec model kadın mı erkek mi oldugunu tahmin etsin")
17
+
18
+ file=st.file_uploader("Bir resim sec",type=["jpeg","jpg","png"])
19
+
20
+ if file is not None:
21
+ img=Image.open(file)
22
+ st.image(img,caption="yuklenen resim")
23
+ image=process_image(img)
24
+ prediction=model.predict(image)
25
+ predicted_class=np.argmax(prediction)
26
+
27
+ class_names={1:"women",
28
+ 0:"men"
29
+ }
30
+
31
+ st.write(class_names[predicted_class])