Skip to content

Commit 56d9f14

Browse files
committed
update dependencies for experimental openvino examples
1 parent 8245c39 commit 56d9f14

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
PYLINT_VERSION := 2.13.9
22
JUNITXML_PATH ?= nncf-tests.xml
3-
DATA_ARG := ''
43

54
ifdef DATA
65
DATA_ARG := --data $(DATA)
@@ -42,6 +41,8 @@ install-openvino-test:
4241
pip install -e .[openvino]
4342
pip install -r tests/openvino/requirements.txt
4443
pip install -r tests/cross_fw/install/requirements.txt
44+
pip install -r examples/experimental/openvino/bert/requirements.txt
45+
pip install -r examples/experimental/openvino/yolo_v5/requirements.txt
4546

4647
install-openvino-dev: install-openvino-test
4748
pip install pylint==$(PYLINT_VERSION)
@@ -53,7 +54,7 @@ pylint-openvino:
5354
pylint --rcfile .pylintrc \
5455
nncf/openvino/ \
5556
tests/openvino/ \
56-
examples/experimental/openvino/
57+
examples/experimental/openvino/
5758

5859
test-install-openvino:
5960
pytest tests/cross_fw/install -s \
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
datasets
22
evaluate
3+
transformers
4+
torch
5+
openvino-dev
6+
numpy
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
yolov5
2+
openvino-dev
3+
torch
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
"""
2+
Copyright (c) 2022 Intel Corporation
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
http://www.apache.org/licenses/LICENSE-2.0
7+
Unless required by applicable law or agreed to in writing, software
8+
distributed under the License is distributed on an "AS IS" BASIS,
9+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
See the License for the specific language governing permissions and
11+
limitations under the License.
12+
"""

0 commit comments

Comments
 (0)