Skip to content

Commit

Permalink
Merge pull request #198 from supervisely-ecosystem/test_tqdm3
Browse files Browse the repository at this point in the history
add original tqdm to import
  • Loading branch information
grokhi committed May 23, 2023
2 parents 997405e + 2e0dde5 commit 0e3d9cf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions supervisely/train/debug.env
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions supervisely/train/src/sly_train.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down
1 change: 0 additions & 1 deletion utils/datasets.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Dataset utils and dataloaders

import glob
import logging
import math
Expand Down

0 comments on commit 0e3d9cf

Please sign in to comment.