Skip to content

Commit

Permalink
Upgrade supervisely SDK to version 6.73.256 and update Dockerfiles an…
Browse files Browse the repository at this point in the history
…d configuration files for consistency.
  • Loading branch information
GoldenAnpu committed Dec 16, 2024
1 parent 63bf54b commit f0ec24d
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ RUN pip3 install onnx==1.12.0

RUN apt-get install ffmpeg libgeos-dev libsm6 libxext6 libexiv2-dev libxrender-dev libboost-all-dev -y

RUN python3 -m pip install supervisely==6.73.255
RUN python3 -m pip install supervisely[tracking]==6.73.255
RUN python3 -m pip install supervisely==6.73.256
RUN python3 -m pip install supervisely[tracking]==6.73.256
RUN pip3 install requests==2.28.2 urllib3==1.26.15
RUN pip3 install packaging==21.3
RUN python3 -c "from supervisely.nn.tracker import *"
RUN python3 -m pip install supervisely[model-benchmark]==6.73.255
RUN python3 -m pip install supervisely[model-benchmark]==6.73.256
RUN pip3 install dill==0.3.8

RUN apt-get update
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN pip3 install ultralytics==8.3.15
RUN pip3 install onnxruntime-gpu==1.18.0
RUN pip3 install dill==0.2.8.2 tf2onnx==1.16.1 skl2onnx==1.17.0
RUN pip3 uninstall -y nvidia-cudnn-cu11
RUN python3 -m pip install supervisely[tracking,model-benchmark]==6.73.255
RUN python3 -m pip install supervisely[tracking,model-benchmark]==6.73.256
RUN python3 -c "from supervisely.nn.tracker import *"

LABEL python_sdk_version=6.73.255
LABEL python_sdk_version=6.73.256
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.40",
"docker_image": "supervisely/yolov8:1.0.41",
"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.250
supervisely[model-benchmark]==6.73.256
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/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM supervisely/yolov8:1.0.40
FROM supervisely/yolov8:1.0.41

# RUN pip3 install git+https://github.com/supervisely/supervisely.git@model-benchmark
RUN pip3 install setuptools==69.5.1
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.40",
"docker_image": "supervisely/yolov8:1.0.41",
"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.250
supervisely[model-benchmark]==6.73.256

0 comments on commit f0ec24d

Please sign in to comment.