Spaces:
Running
Running
Update app.py
Browse files
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
|
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))
|