Spaces:
Sleeping
Sleeping
aliicemill
commited on
Upload 3 files
Browse files- app.py +28 -0
- date_fruit_class_cnn.h5 +3 -0
- requirements.txt +3 -0
app.py
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/env python
|
2 |
+
# coding: utf-8
|
3 |
+
#dosyayı py olarak kaydet ve komut satırını kullanarak streamlit run streamlit.py
|
4 |
+
import streamlit as st
|
5 |
+
from tensorflow.keras.models import load_model
|
6 |
+
from PIL import Image
|
7 |
+
import numpy as np
|
8 |
+
import cv2
|
9 |
+
model=load_model('date_fruit_class_cnn.h5')
|
10 |
+
def process_image(img):
|
11 |
+
img=img.resize((224,224))
|
12 |
+
img=np.array(img)
|
13 |
+
img=img/255.0
|
14 |
+
img=np.expand_dims(img,axis=0)
|
15 |
+
return img
|
16 |
+
st.title('Date Fruit Classification')
|
17 |
+
st.write('Please choose an image so that the AI model can predict the type of date.')
|
18 |
+
file=st.file_uploader('Pick an image', type= ['jpg','jpeg','png'])
|
19 |
+
class_names=['Ajwa', 'Medjool','Nabtat Ali', 'Shaishe', 'Sugaey', 'Galaxy', 'Meneifi','Rutab', 'Sokari']
|
20 |
+
if file is not None:
|
21 |
+
img=Image.open(file)
|
22 |
+
st.image(img,caption='The image: ')
|
23 |
+
image=process_image(img)
|
24 |
+
prediction=model.predict(image)
|
25 |
+
predicted_class=np.argmax(prediction)
|
26 |
+
st.write('Probability Distribution')
|
27 |
+
st.write(prediction)
|
28 |
+
st.write("Prediction: ",class_names[predicted_class])
|
date_fruit_class_cnn.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:679ea8bc31e638cd3ab3e8b9875283751f35c3c2934ec67b734398669f045c53
|
3 |
+
size 61340272
|
requirements.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
streamlit
|
2 |
+
tensorflow
|
3 |
+
opencv-python
|