Skip to content

Commit

Permalink
change cloud detector to nodelib version 0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
denniswittich committed Dec 1, 2023
1 parent 252f0d2 commit 5e266cd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion detector/cloud.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN pip3 install --no-cache-dir pycuda==2022.2.2
RUN pip3 install --no-cache-dir "uvicorn"
RUN pip3 install --no-cache-dir async_generator aiofiles psutil pillow multidict attrs yarl async_timeout idna_ssl cchardet aiosignal
# LL_NODE-Library can be overwritten by local version if environment variable LINKLL is set to TRUE
RUN pip3 install --no-cache-dir "learning_loop_node==v0.8.3"
RUN pip3 install --no-cache-dir "learning_loop_node==v0.8.4"
RUN pip3 install --no-cache-dir "gdown"
RUN pip3 install --no-cache-dir starlette==0.16.0

Expand Down
4 changes: 2 additions & 2 deletions detector/docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ then
L4T_REVISION=$(echo $L4T_VERSION_STRING | cut -f 2 -d ',' | grep -Po '(?<=REVISION: )[^;]+')
L4T_VERSION="$L4T_RELEASE.$L4T_REVISION"
build_args+=" --build-arg BASE_IMAGE=zauberzeug/l4t-opencv:4.5.2-on-nano-r$L4T_VERSION" # this is python 3.6
image="zauberzeug/yolov5-detector:nlv0.8.3-$L4T_VERSION"
image="zauberzeug/yolov5-detector:nlv0.8.4-$L4T_VERSION"
dockerfile="jetson.dockerfile"
else
build_args+=" --build-arg BASE_IMAGE=nvcr.io/nvidia/pytorch:23.07-py3" # this is python 3.10
image="zauberzeug/yolov5-detector:nlv0.8.3-cloud"
image="zauberzeug/yolov5-detector:nlv0.8.4-cloud"
dockerfile="cloud.dockerfile"
fi

Expand Down
3 changes: 2 additions & 1 deletion detector/jetson.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ RUN apt-get update && \
&& apt-get clean

RUN pip3 install --no-cache-dir async_generator aiofiles psutil pillow multidict attrs yarl async_timeout idna_ssl cchardet aiosignal
RUN pip3 install --no-cache-dir "learning_loop_node==v0.7.54"
# NOTE: currently we can not use newer version of learning_loop_node because it requires a higher python version
RUN pip3 install --no-cache-dir "learning_loop_node==v0.7.54"
RUN pip3 install --no-cache-dir "gdown"
RUN pip3 install --no-cache-dir starlette==0.16.0

Expand Down

0 comments on commit 5e266cd

Please sign in to comment.