diff --git a/requirements.txt b/requirements.txt index 87c8f31fd48a..f34e82132c4b 100755 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ # pip install -r requirements.txt -git+https://github.com/supervisely/supervisely@tqdm-fixes +supervisely==6.72.14 opencv-python-headless==4.5.5.62 opencv-python==4.5.5.62 diff --git a/supervisely/train/debug.env b/supervisely/train/debug.env index f32ca184fde1..5f18a3dce90c 100644 --- a/supervisely/train/debug.env +++ b/supervisely/train/debug.env @@ -1,10 +1,10 @@ PYTHONUNBUFFERED=1 -DEBUG_APP_DIR="/app_debug_data" -DEBUG_CACHE_DIR="/app_cache" +DEBUG_APP_DIR="./app_debug_data" +DEBUG_CACHE_DIR="./app_cache" LOG_LEVEL="debug" -TASK_ID=4326 +TASK_ID=34562 context.teamId=229 context.workspaceId=287 diff --git a/supervisely/train/src/sly_train.py b/supervisely/train/src/sly_train.py index 66e5b737721e..fbbab58f0bf5 100644 --- a/supervisely/train/src/sly_train.py +++ b/supervisely/train/src/sly_train.py @@ -1,5 +1,9 @@ import os import supervisely as sly +import tqdm + +from supervisely import _original_tqdm +tqdm.tqdm = _original_tqdm import sly_train_globals as g diff --git a/utils/datasets.py b/utils/datasets.py index 3fcdddd7c013..7561699a2c2b 100755 --- a/utils/datasets.py +++ b/utils/datasets.py @@ -1,5 +1,4 @@ # Dataset utils and dataloaders - import glob import logging import math