Skip to content

Commit

Permalink
Merge pull request #197 from supervisely-ecosystem/test_tqdm
Browse files Browse the repository at this point in the history
fix: AttributeError: 'tqdm_sly' object has no attribute 'iterable'
  • Loading branch information
grokhi committed May 22, 2023
2 parents b483336 + c260377 commit c736d90
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -249,4 +249,6 @@ crashlytics.properties
crashlytics-build.properties
fabric.properties

supervisely_lib
supervisely_lib

app_debug_data/
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Debug",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/supervisely/serve/src/main.py",
"program": "${workspaceFolder}/supervisely/train/src/sly_train.py",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
Expand Down
8 changes: 6 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ supervisely==6.72.12
opencv-python-headless==4.5.5.62
opencv-python==4.5.5.62

--extra-index-url https://download.pytorch.org/whl/cu113
torch==1.11.0
torchvision==0.12.0

# base ----------------------------------------
PyYAML==5.4.1
tensorboard==2.4.1
Expand All @@ -15,8 +19,8 @@ seaborn==0.11.1
coremltools==4.1
onnx>=1.8.0
onnxruntime==1.8.0
# scikit-learn==1.1.1 # for coreml quantization
numpy==1.19.0
scikit-learn==1.1.1 # for coreml quantization
numpy==1.21.2
# extras --------------------------------------
thop==0.0.31-2005241907 # FLOPS computation
pycocotools==2.0.2 # COCO mAP
1 change: 1 addition & 0 deletions train.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@


def train(hyp, opt, device, tb_writer=None):

train_batches_uploaded = False

logger.info("hyperparameters", extra=hyp)
Expand Down

0 comments on commit c736d90

Please sign in to comment.