Skip to content

Commit

Permalink
Upgrade SDK to 6.73.250 to fix project downloading errors (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
almazgimaev authored Dec 10, 2024
1 parent 7e40417 commit 7cb9f69
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion serve/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"deployed_nn"
],
"community_agent": false,
"docker_image": "supervisely/yolov8:1.0.39",
"docker_image": "supervisely/yolov8:1.0.40",
"instance_version": "6.12.12",
"entrypoint": "python3 -m uvicorn src.main:m.app --app-dir ./serve --host 0.0.0.0 --port 8000 --ws websockets",
"port": 8000,
Expand Down
2 changes: 1 addition & 1 deletion serve/dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# git+https://github.com/supervisely/supervisely.git@some-test-branch

supervisely[model-benchmark]==6.73.232
supervisely[model-benchmark]==6.73.250
ultralytics==8.2.26
--extra-index-url https://download.pytorch.org/whl/cu113
torch==1.10.1+cu113
Expand Down
2 changes: 1 addition & 1 deletion train/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"train"
],
"description": "Dashboard to configure, start and monitor YOLOv8 | v9 | v10 | v11 training",
"docker_image": "supervisely/yolov8:1.0.39",
"docker_image": "supervisely/yolov8:1.0.40",
"instance_version": "6.12.12",
"entrypoint": "python3 -m uvicorn src.main:app --app-dir ./train --host 0.0.0.0 --port 8000 --ws websockets",
"task_location": "workspace_tasks",
Expand Down
2 changes: 1 addition & 1 deletion train/dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
supervisely[model-benchmark]==6.73.239
supervisely[model-benchmark]==6.73.250
5 changes: 4 additions & 1 deletion train/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,10 @@ def update_globals(new_dataset_ids):
### 1. Dataset selection
# dataset_selector = SelectDataset(project_id=project_id, multiselect=True, select_all_datasets=True)
dataset_selector = SelectDatasetTree(
project_id=project_id, multiselect=True, select_all_datasets=True
project_id=project_id,
multiselect=True,
select_all_datasets=True,
allowed_project_types=[sly.ProjectType.IMAGES],
)
use_cache_text = Text(
"Use cached data stored on the agent to optimize project download"
Expand Down

0 comments on commit 7cb9f69

Please sign in to comment.