annapurnapadmaprema-ji's picture
Update app.py
d84bb40 verified
raw
history blame
1.15 kB
import streamlit as st
import tensorflow as tf
import numpy as np
from PIL import Image
import os
model = tf.keras.models.load_model('my_cnn_model_7.h5')
def predict_image(img):
img = img.resize((64, 64))
img_array = np.array(img)
img_array = np.expand_dims(img_array, axis=0)
img_array = img_array / 255.0
predictions = model.predict(img_array)
prediction_label = (predictions > 0.5).astype("int32")
return prediction_label[0][0]
# Streamlit UI
st.title("Image Classifier: Real vs Fake")
st.write("Upload an image to classify it as 'Real' or 'Fake'.")
uploaded_file = st.file_uploader("Choose an image...", type=["jpg", "jpeg", "png"])
if uploaded_file is not None:
img = Image.open(uploaded_file)
img_resized = img.resize((100, 100))
st.image(img_resized, caption="Uploaded Image.", use_container_width=False)
if st.button('Classify'):
prediction = predict_image(img)
if prediction == 1:
st.write("Prediction: The given image is **Real**")
else:
st.write("Prediction: The given image is **Fake**")