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.
1 parent 13284dc commit 2862b75Copy full SHA for 2862b75
UserGuide.md
@@ -30,7 +30,7 @@ For example, say you want to set your desired confidence level to 0.95, but that
30
```Python
31
d = gl.get_or_create_detector(name="trash", query="Is the trash can full?", confidence=0.95)
32
image_query = gl.submit_image_query(detector=d, image=jpeg_img, wait=60)
33
-# This will wait until either 30 seconds have passed or the confidence reaches 0.95
+# This will wait until either 60 seconds have passed or the confidence reaches 0.95
34
print(f"The answer is {image_query.result}")
35
```
36
0 commit comments