Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modernize OpenVINO-based Nuclio functions and allow them to run on Kubernetes #6129

Merged
merged 11 commits into from
May 15, 2023
Prev Previous commit
serverless/openvino: prevent unnecessary downloads
By default, Model Downloader downloads all available precisions.
  • Loading branch information
SpecLad committed May 14, 2023
commit 244e9973a998e506256c2b6a3e2610ee473a12fe
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 \
--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 semantic-segmentation-adas-0001 \
--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 text-detection-0004 \
--precisions FP32 \
-o /opt/nuclio/open_model_zoo

FROM cvat.openvino.base
Expand Down