Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add original tqdm to import #198

Merged
merged 8 commits into from
May 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading