README states:
YOLO9000 covering more than 9000 classes listed here. Tag: yolo90000.
Tag should be yolo9000
Also, some simple python examples may be helpful, here's one for POST:
import requests
import json
with open('test.jpg', 'rb') as f:
r = requests.post("http://localhost:9999/detect",files={'image_file': f},timeout=60, data={'threshold':0.25})
if r.status_code == 200:
data = json.loads(r.text)
print(data)
Thank you for this image!
README states:
YOLO9000 covering more than 9000 classes listed here. Tag: yolo90000.
Tag should be
yolo9000
Also, some simple python examples may be helpful, here's one for POST: