Spaces:
Runtime error
Runtime error
File size: 299 Bytes
b0be318 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
"""Perform test request"""
import pprint
import requests
DETECTION_URL = "http://localhost:5000/v1/object-detection/yolov5s"
TEST_IMAGE = "zidane.jpg"
image_data = open(TEST_IMAGE, "rb").read()
response = requests.post(DETECTION_URL, files={"image": image_data}).json()
pprint.pprint(response)
|