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

Workaround a problem with deployment openvino serverless functions #1996

Merged
merged 3 commits into from
Aug 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
-

### Fixed
-
- Issue loading openvino models for semi-automatic and automatic annotation (<https://github.com/opencv/cvat/pull/1996>)

### Security
-
Expand Down
2 changes: 0 additions & 2 deletions serverless/openvino/dextr/nuclio/function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ spec:
value: unzip dextr_model_v1.zip
- kind: RUN
value: pip3 install Pillow
- kind: USER
value: openvino

triggers:
myHttpTrigger:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@ spec:
- kind: RUN
value: /opt/intel/openvino/deployment_tools/open_model_zoo/tools/downloader/converter.py --name person-reidentification-retail-0300 --precisions FP32 -d /opt/nuclio/open_model_zoo -o /opt/nuclio/open_model_zoo

postCopy:
- kind: USER
value: openvino

triggers:
myHttpTrigger:
maxWorkers: 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ spec:
value: apt update && DEBIAN_FRONTEND=noninteractive apt install --no-install-recommends -y python3-skimage
- kind: RUN
value: pip3 install "numpy<1.16.0" # workaround for skimage
- kind: USER
value: openvino

triggers:
myHttpTrigger:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ spec:
- kind: RUN
value: /opt/intel/openvino/deployment_tools/open_model_zoo/tools/downloader/downloader.py --name text-detection-0004 -o /opt/nuclio/open_model_zoo

postCopy:
- kind: USER
value: openvino

triggers:
myHttpTrigger:
maxWorkers: 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,6 @@ spec:
- kind: RUN
value: /opt/intel/openvino/deployment_tools/open_model_zoo/tools/downloader/converter.py --name faster_rcnn_inception_v2_coco --precisions FP32 -d /opt/nuclio/open_model_zoo -o /opt/nuclio/open_model_zoo

postCopy:
- kind: USER
value: openvino

triggers:
myHttpTrigger:
maxWorkers: 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,6 @@ spec:
value: apt update && DEBIAN_FRONTEND=noninteractive apt install --no-install-recommends -y python3-skimage
- kind: RUN
value: pip3 install "numpy<1.16.0" # workaround for skimage
- kind: USER
value: openvino

triggers:
myHttpTrigger:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,6 @@ spec:
- kind: RUN
value: /opt/intel/openvino/deployment_tools/open_model_zoo/tools/downloader/converter.py --name yolo-v3-tf --precisions FP32 -d /opt/nuclio/open_model_zoo -o /opt/nuclio/open_model_zoo

postCopy:
- kind: USER
value: openvino

triggers:
myHttpTrigger:
Expand Down