Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| import tensorflow as tf | |
| import numpy as np | |
| # Load the saved model | |
| model = tf.keras.models.load_model('mymodel.h5') | |
| # Define the labels | |
| labels = ['Buildings', 'Forest', 'Sea'] | |
| # Define the image classification function | |
| def classify_image(image): | |
| # Preprocess the image | |
| image = np.array(image) | |
| image = tf.image.resize(image, (128, 128)) # Resize the image to match the input size of the model | |
| image = tf.expand_dims(image, axis=0) # Add batch dimension | |
| image = tf.keras.applications.resnet50.preprocess_input(image) | |
| # Predict the class | |
| predictions = model.predict(image).flatten() | |
| # Get the predicted class label | |
| predicted_class = labels[np.argmax(predictions)] | |
| return predicted_class | |
| # Create the Gradio interface directly | |
| interface = gr.Interface(classify_image, "image", "label", title="Image Classifier") | |
| # Launch the interface | |
| interface.launch() | |