Skip to content

Commit acf297c

Browse files
author
Roman Donchenko
committed
Merge commit '84683e67355ed15fb00a38d928e9d4d9257dd058'
This is the commit that was included in OpenVINO 2019 R3.
2 parents 693ba31 + 84683e6 commit acf297c

File tree

682 files changed

+26886
-6628
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

682 files changed

+26886
-6628
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@
55
/ci/** -omz.package
66
/demos/build_demos.sh omz.package=l,m
77
/demos/build_demos_msvc.bat omz.package=w
8+
/demos/tests/** -omz.package
9+
/tools/downloader/tests/** -omz.package

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# [OpenVINO™ Toolkit](https://01.org/openvinotoolkit) - Open Model Zoo repository
22
[![Build Status](http://134.191.240.124/buildStatus/icon?job=omz/2018/trigger)](http://134.191.240.124/job/omz/job/2018/job/trigger/)
3-
[![Stable release](https://img.shields.io/badge/version-2019_R2-green.svg)](https://github.com/opencv/open_model_zoo/releases/tag/2019_R2)
3+
[![Stable release](https://img.shields.io/badge/version-2019_R3-green.svg)](https://github.com/opencv/open_model_zoo/releases/tag/2019_R3)
44
[![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/open_model_zoo/community)
55
[![Apache License Version 2.0](https://img.shields.io/badge/license-Apache_2.0-green.svg)](LICENSE)
66

77
This repository includes optimized deep learning models and a set of demos to expedite development of high-performance deep learning inference applications. Use these free pre-trained models instead of training your own models to speed-up the development and production deployment process.
88

99
## Repository Components:
10-
* [Pre-Trained Models](intel_models/index.md)
10+
* [Pre-Trained Models](models/intel/index.md)
11+
* [Public Models Description](models/public/index.md)
1112
* [Model Downloader](tools/downloader/README.md) and other automation tools
1213
* [Demos](demos/README.md) that demonstrate models usage with Deep Learning Deployment Toolkit
1314
* [Accuracy Checker](tools/accuracy_checker/README.md) tool for models accuracy validation

ci/requirements-ac.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
joblib==0.13.2 # via scikit-learn
2-
nibabel==2.4.1
3-
numpy==1.16.0
4-
pillow==6.0.0
2+
nibabel==2.5.0
3+
numpy==1.17.0
4+
pillow==6.1.0
55
py-cpuinfo==4.0.0
6-
pyyaml==5.1.1
7-
scikit-learn==0.21.2
6+
pyyaml==5.1.2
7+
scikit-learn==0.21.3
88
scipy==0.19.0
99
shapely==1.6.4.post2
1010
six==1.12.0 # via nibabel
11-
tqdm==4.32.1
11+
tqdm==4.33.0
1212
yamlloader==0.5.5

ci/requirements-conversion.txt

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
absl-py==0.7.1 # via tensorboard, tensorflow
2+
astor==0.8.0 # via tensorflow
3+
certifi==2019.6.16 # via requests
4+
chardet==3.0.4 # via requests
5+
decorator==4.4.0 # via networkx
6+
defusedxml==0.6.0
7+
gast==0.2.2 # via tensorflow
8+
google-pasta==0.1.7 # via tensorflow
9+
graphviz==0.8.4 # via mxnet
10+
grpcio==1.22.0 # via tensorboard, tensorflow
11+
h5py==2.9.0 # via keras-applications
12+
idna==2.8 # via requests
13+
keras-applications==1.0.8 # via tensorflow
14+
keras-preprocessing==1.1.0 # via tensorflow
15+
markdown==3.1.1 # via tensorboard
16+
mxnet==1.3.1
17+
networkx==2.3
18+
numpy==1.14.6
19+
onnx==1.5.0
20+
pillow==6.1.0 # via torchvision
21+
protobuf==3.6.1
22+
requests==2.22.0 # via mxnet
23+
scipy==1.3.1
24+
six==1.12.0 # via absl-py, grpcio, h5py, keras-preprocessing, onnx, protobuf, tensorboard, tensorflow, test-generator, torchvision
25+
tensorboard==1.14.0 # via tensorflow
26+
tensorflow-estimator==1.14.0 # via tensorflow
27+
tensorflow==1.14.0
28+
termcolor==1.1.0 # via tensorflow
29+
test-generator==0.1.1
30+
torch==1.2.0
31+
torchvision==0.4.0
32+
typing-extensions==3.7.4 # via onnx
33+
typing==3.7.4 # via onnx
34+
urllib3==1.25.3 # via requests
35+
werkzeug==0.15.5 # via tensorboard
36+
wheel==0.33.4 # via tensorboard, tensorflow
37+
wrapt==1.11.2 # via tensorflow
38+
39+
# The following packages are considered to be unsafe in a requirements file:
40+
# setuptools==41.0.1 # via markdown, protobuf, tensorboard

ci/requirements-demos.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
numpy==1.17.0 ; python_version >= "3.4"

ci/requirements-downloader.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#
55
# pip-compile --output-file=ci/requirements-downloader.txt tools/downloader/requirements.in
66
#
7-
certifi==2019.3.9 # via requests
7+
certifi==2019.6.16 # via requests
88
chardet==3.0.4 # via requests
99
idna==2.8 # via requests
10-
pyyaml==5.1
10+
pyyaml==5.1.2
1111
requests==2.22.0
1212
urllib3==1.25.3 # via requests

ci/requirements-mo.txt

Lines changed: 0 additions & 32 deletions
This file was deleted.

demos/CMakeLists.txt

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33
#
44

5-
cmake_minimum_required (VERSION 2.8.11)
5+
cmake_minimum_required (VERSION 2.8.12)
66

77
project(Demos)
88

@@ -155,6 +155,10 @@ macro(ie_add_sample)
155155
endif()
156156
endif()
157157

158+
if(TARGET IE::ie_cpu_extension)
159+
add_definitions(-DWITH_EXTENSIONS)
160+
endif()
161+
158162
# Create named folders for the sources within the .vcproj
159163
# Empty name lists them directly under the .vcproj
160164
source_group("src" FILES ${IE_SAMPLES_SOURCES})
@@ -174,8 +178,12 @@ macro(ie_add_sample)
174178
endif()
175179
target_include_directories(${IE_SAMPLE_NAME} PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../common")
176180

181+
if(TARGET IE::ie_cpu_extension)
182+
target_link_libraries(${IE_SAMPLE_NAME} PRIVATE IE::ie_cpu_extension)
183+
endif()
184+
177185
target_link_libraries(${IE_SAMPLE_NAME} PRIVATE ${OpenCV_LIBRARIES} ${InferenceEngine_LIBRARIES}
178-
${IE_SAMPLE_DEPENDENCIES} IE::ie_cpu_extension gflags)
186+
${IE_SAMPLE_DEPENDENCIES} gflags)
179187

180188
if(UNIX)
181189
target_link_libraries(${IE_SAMPLE_NAME} PRIVATE pthread)

0 commit comments

Comments
 (0)