Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -35,10 +35,10 @@ def image_to_query(image):
|
|
35 |
|
36 |
output: Query for the LLM
|
37 |
"""
|
38 |
-
image = Image.open(image)
|
39 |
#image = cv2.imread(image)
|
40 |
#image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
|
41 |
-
|
42 |
|
43 |
model = AutoModelForImageClassification.from_pretrained("nprasad24/bean_classifier", from_tf=True)
|
44 |
image_processor = AutoImageProcessor.from_pretrained("nprasad24/bean_classifier")
|
|
|
35 |
|
36 |
output: Query for the LLM
|
37 |
"""
|
38 |
+
#image = Image.open(image)
|
39 |
#image = cv2.imread(image)
|
40 |
#image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
|
41 |
+
image = Image.fromarray(image)
|
42 |
|
43 |
model = AutoModelForImageClassification.from_pretrained("nprasad24/bean_classifier", from_tf=True)
|
44 |
image_processor = AutoImageProcessor.from_pretrained("nprasad24/bean_classifier")
|