You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dependabot[bot] 4c72bc3fda Bump tensorflow from 1.12.3 to 1.15.0 in /cvat/requirements (#968)
* Bump tensorflow from 1.12.3 to 1.15.0 in /cvat/requirements

Bumps [tensorflow](https://github.com/tensorflow/tensorflow) from 1.12.3 to 1.15.0.
- [Release notes](https://github.com/tensorflow/tensorflow/releases)
- [Changelog](https://github.com/tensorflow/tensorflow/blob/master/RELEASE.md)
- [Commits](https://github.com/tensorflow/tensorflow/compare/v1.12.3...v1.15.0)

Signed-off-by: dependabot[bot] <support@github.com>

* Update pip because tensorflow 1.15 cannot not be found.

* Fix a typo (pip -> pip3)

* Replaced pip3 by python3 -m pip.
6 years ago
..
README.md Bump tensorflow from 1.12.3 to 1.15.0 in /cvat/requirements (#968) 6 years ago
interp.py Yolov3 interpretration script fix for 'Annotation failed' and changes to mapping.json (#896) (#912) 6 years ago
mapping.json Yolov3 interpretration script fix for 'Annotation failed' and changes to mapping.json (#896) (#912) 6 years ago

README.md

Object Detection YOLO V3 Python Demo, Async API Performance Showcase

See these instructions for converting the yolo weights to the OpenVino format.

As of OpenVINO 2019 R3, only tensorflow 1.13 and NetworkX 2.3. These can be explicitly installed using the following command.

python3 -m pip install tensorflow==1.13 networkx==2.3

Additionally, at the time of writing, the model optimizer required an input shape.

python3 mo_tf.py \
    --input_model /path/to/yolo_v3.pb \
    --tensorflow_use_custom_operations_config $MO_ROOT/extensions/front/tf/yolo_v3.json \
    --input_shape [1,416,416,3]