srinuksv commited on
Commit
e8000b6
·
verified ·
1 Parent(s): 85fc6e9

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +27 -0
app.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import tensorflow as tf
3
+
4
+ # Load your TensorFlow model
5
+ model = tf.keras.models.load_model("/content/bird_species_classification_model.h5")
6
+
7
+ # Define your class names if needed
8
+ class_names = ['ABBOTTS BABBLER', 'ABBOTTS BOOBY', 'ABYSSINIAN GROUND HORNBILL', 'AFRICAN CROWNED CRANE', 'AFRICAN EMERALD CUCKOO', 'AFRICAN FIREFINCH', 'AFRICAN OYSTER CATCHER', 'AFRICAN PIED HORNBILL', 'AFRICAN PYGMY GOOSE', 'ALBATROSS', 'ALBERTS TOWHEE', 'ALEXANDRINE PARAKEET', 'ALPINE CHOUGH', 'ALTAMIRA YELLOWTHROAT', 'AMERICAN AVOCET', 'AMERICAN BITTERN', 'AMERICAN COOT', 'AMERICAN FLAMINGO', 'AMERICAN GOLDFINCH', 'AMERICAN KESTREL']
9
+
10
+ # Function to make predictions
11
+ def classify_image(image):
12
+ # Preprocess the image
13
+ img = tf.image.resize(image, (224, 224))
14
+ img = tf.expand_dims(img, 0) # Add batch dimension
15
+ # Make prediction
16
+ prediction = model.predict(img)
17
+ predicted_class = class_names[prediction.argmax()]
18
+ return predicted_class
19
+
20
+ # Gradio interface
21
+ image = gr.inputs.Image() # Remove the `shape` argument
22
+ label = gr.outputs.Label()
23
+
24
+ # Create interface
25
+ gr.Interface(classify_image, image, label,
26
+ title="Bird Species Classification",
27
+ description="Upload an image of a bird to classify its species.").launch()