Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ from transformers import ViTImageProcessor,pipeline
|
|
8 |
model = ViTImageProcessor.from_pretrained('SeyedAli/Food-Image-Classification-VIT')
|
9 |
|
10 |
def FoodClassification(image):
|
11 |
-
with tempfile.NamedTemporaryFile(suffix=".png") as
|
12 |
# Copy the contents of the uploaded image file to the temporary file
|
13 |
temp_image_file.write(open(image, "rb").read())
|
14 |
temp_image_file.flush()
|
|
|
8 |
model = ViTImageProcessor.from_pretrained('SeyedAli/Food-Image-Classification-VIT')
|
9 |
|
10 |
def FoodClassification(image):
|
11 |
+
with tempfile.NamedTemporaryFile(suffix=".png") as temp_image_file:
|
12 |
# Copy the contents of the uploaded image file to the temporary file
|
13 |
temp_image_file.write(open(image, "rb").read())
|
14 |
temp_image_file.flush()
|