Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ def guessanImage(image):
|
|
16 |
imgclassifier = pipeline("image-classification", model=model)
|
17 |
if image is not None:
|
18 |
# b64img = base64.b64encode(image.getvalue()).decode()
|
19 |
-
imgclassifier(
|
20 |
|
21 |
return description
|
22 |
|
|
|
16 |
imgclassifier = pipeline("image-classification", model=model)
|
17 |
if image is not None:
|
18 |
# b64img = base64.b64encode(image.getvalue()).decode()
|
19 |
+
imgclassifier(image)
|
20 |
|
21 |
return description
|
22 |
|