Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Built new image classification model based on new set of images #256

Merged
merged 9 commits into from
Oct 31, 2023
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ venv
/AI-Hacktober-MLSA
pyvenv.cfg
lib64
*.DS_Store
*.DS_Store
.ipynb_checkpoints

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# Model Deployment using Streamlit

# import libraries
import cv2
import numpy as np
import pandas as pd
from PIL import Image
import streamlit as st
import tensorflow as tf

st.title("Image Classification Web App")

# Load saved image classification model
model = tf.keras.models.load_model("Image_Classification_Davisonyeas/model")

# Function to Read and Manupilate Images
def load_image(img):
im = Image.open(img)
Expand Down

This file was deleted.

676 changes: 0 additions & 676 deletions Project_1/Image_Classification_ayoni02/Image_Classification.ipynb

This file was deleted.

Loading