Skip to content

Commit

Permalink
serverless/openvino: prevent unnecessary downloads
Browse files Browse the repository at this point in the history
By default, Model Downloader downloads all available precisions.
  • Loading branch information
SpecLad committed May 12, 2023
1 parent 9892b15 commit 7177f13
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ USER root

RUN omz_downloader \
--name face-detection-0205,emotions-recognition-retail-0003,age-gender-recognition-retail-0013 \
--precisions FP32 \
-o /opt/nuclio/open_model_zoo

FROM cvat.openvino.base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ USER root

RUN omz_downloader \
--name person-reidentification-retail-0277 \
--precision FP32 \
-o /opt/nuclio/open_model_zoo

FROM cvat.openvino.base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ USER root

RUN omz_downloader \
--name semantic-segmentation-adas-0001 \
--precision FP32 \
-o /opt/nuclio/open_model_zoo

FROM cvat.openvino.base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ USER root

RUN omz_downloader \
--name text-detection-0004 \
--precisions FP32 \
-o /opt/nuclio/open_model_zoo

FROM cvat.openvino.base
Expand Down

0 comments on commit 7177f13

Please sign in to comment.