tommy24 commited on
Commit
f716ad8
·
1 Parent(s): dc0836e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -836,10 +836,10 @@ def classify(platform, UserInput, Images, Textbox2, Textbox3):
836
  print("Error: Image data is not available.")
837
  return None
838
 
839
- if UserInput.lower() is not None:
840
  caption = UserInput.lower()
841
  else:
842
- caption = ""
843
 
844
  image = cv.imdecode(np.frombuffer(image_data, np.uint8), cv.IMREAD_COLOR)
845
  image = cv.resize(image, (224, 224))
 
836
  print("Error: Image data is not available.")
837
  return None
838
 
839
+ if UserInput.lower() is not "":
840
  caption = UserInput.lower()
841
  else:
842
+ caption = None
843
 
844
  image = cv.imdecode(np.frombuffer(image_data, np.uint8), cv.IMREAD_COLOR)
845
  image = cv.resize(image, (224, 224))