diff --git a/docs/docs/getting-started/4-writing-queries.md b/docs/docs/getting-started/4-writing-queries.md index 6babf346..83235b7c 100644 --- a/docs/docs/getting-started/4-writing-queries.md +++ b/docs/docs/getting-started/4-writing-queries.md @@ -2,7 +2,7 @@ ## Introduction -Groundlight allows you to ask a variety of questions about images. The most common type of question is a binary question that can be answered with a simple "YES" or "NO". For example, "Is there a car in the leftmost parking space?" or "Is the door open?". Ambiguity in the question can lead to "UNSURE" responses. +Groundlight allows you to ask a variety of questions about images. The most common type of question is a binary question that can be answered with a simple "YES" or "NO". For example, "Is there a car in the leftmost parking space?" or "Is the door open?". Ambiguity in the question can lead to "UNCLEAR" responses. ```python notest detector = gl.get_or_create_detector( @@ -11,7 +11,7 @@ detector = gl.get_or_create_detector( ) image_query = gl.submit_image_query(detector=detector, image=some_image) -# The SDK can return "YES" or "NO" (or "UNSURE") +# The SDK can return "YES" or "NO" (or "UNCLEAR") print(f"The answer is {image_query.result.label}") ``` diff --git a/docs/docs/installation/1-linux.md b/docs/docs/installation/1-linux.md index 4a07acec..1a240a98 100644 --- a/docs/docs/installation/1-linux.md +++ b/docs/docs/installation/1-linux.md @@ -37,6 +37,12 @@ To check if the Groundlight SDK is installed and to display its version, you can python -c "import groundlight; print(groundlight.__version__)" ``` +or the groundlight command line tool that comes with the SDK: + +```bash +groundlight --help +``` + ### Upgrading Groundlight SDK If you need to upgrade the Groundlight SDK to the latest version, use the following pip command: diff --git a/docs/docs/installation/2-macos.md b/docs/docs/installation/2-macos.md index 5b4c82c8..4e95b110 100644 --- a/docs/docs/installation/2-macos.md +++ b/docs/docs/installation/2-macos.md @@ -37,6 +37,11 @@ To check if the Groundlight SDK is installed and to display its version, you can python -c "import groundlight; print(groundlight.__version__)" ``` +or the groundlight command line tool that comes with the SDK: + +```bash +groundlight --help +``` ### Upgrading Groundlight SDK If you need to upgrade the Groundlight SDK to the latest version, use the following pip command: