nprasad24 commited on
Commit
ed69b0e
·
verified ·
1 Parent(s): ee39426

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- #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")
 
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")