We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
object_detection.py
1 parent 61bd962 commit 5ccbc08Copy full SHA for 5ccbc08
roboflow/models/object_detection.py
@@ -80,7 +80,7 @@ def __init__(
80
81
# local needs to be passed from Project
82
if local is None:
83
- self.base_url = OBJECT_DETECTION_URL
+ self.base_url = OBJECT_DETECTION_URL + '/'
84
else:
85
print("initalizing local object detection model hosted at :" + local)
86
self.base_url = local
@@ -515,7 +515,7 @@ def __generate_url(
515
# Reassign parameters if any parameters are changed
516
if local is not None:
517
if not local:
518
+ self.base_url = OBJECT_DETECTION_URL +'/'
519
520
self.base_url = "http://localhost:9001/"
521
0 commit comments