asmaa1 commited on
Commit
d1db14a
·
verified ·
1 Parent(s): 26621f4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -29,6 +29,9 @@ class_names_dict = {
29
 
30
 
31
  def predict_image(img_path):
 
 
 
32
  # Load the image using PIL
33
  img = Image.open(img_path)
34
  img = img.resize((256, 256)) # Resize the image
 
29
 
30
 
31
  def predict_image(img_path):
32
+ # If no image is uploaded, return a message
33
+ if img_path is None:
34
+ return "Please upload an image.", fixed_image_url
35
  # Load the image using PIL
36
  img = Image.open(img_path)
37
  img = img.resize((256, 256)) # Resize the image