Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -836,7 +836,7 @@ def classify(platform, UserInput, Images, Textbox2, Textbox3):
|
|
836 |
print("Error: Image data is not available.")
|
837 |
return None
|
838 |
|
839 |
-
if UserInput
|
840 |
caption = UserInput.lower()
|
841 |
else:
|
842 |
caption = None
|
|
|
836 |
print("Error: Image data is not available.")
|
837 |
return None
|
838 |
|
839 |
+
if UserInput is not None:
|
840 |
caption = UserInput.lower()
|
841 |
else:
|
842 |
caption = None
|