ultralytics 8.0.236 dataset semantic & SQL search API (#7136)

Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: Laughing-q <1182102784@qq.com>
This commit is contained in:
Ayush Chaurasia 2024-01-07 00:23:25 +05:30 committed by GitHub
parent 40a5c0abe7
commit aca8eb1fd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 1749 additions and 192 deletions

View file

@ -133,6 +133,7 @@ You can control the number of image predictions that Comet ML logs during your e
```python
import os
os.environ["COMET_MAX_IMAGE_PREDICTIONS"] = "200"
```
@ -142,6 +143,7 @@ Comet ML allows you to specify how often batches of image predictions are logged
```python
import os
os.environ['COMET_EVAL_BATCH_LOGGING_INTERVAL'] = "4"
```
@ -151,6 +153,7 @@ In some cases, you may not want to log the confusion matrix from your validation
```python
import os
os.environ["COMET_EVAL_LOG_CONFUSION_MATRIX"] = "false"
```
@ -160,6 +163,7 @@ If you find yourself in a situation where internet access is limited, Comet ML p
```python
import os
os.environ["COMET_MODE"] = "offline"
```