Updated TensorFlow Object Detection API (markdown)

Dmitry Kurtaev 2018-01-29 12:40:07 +03:00
parent c53f1cef11
commit c6b3f78f79

@ -3,4 +3,4 @@
This wiki describes how to work with object detection models trained using [TensorFlow Object Detection API](https://github.com/tensorflow/models/tree/master/research/object_detection).
## Run network in TensorFlow
Deep learning networks in TensorFlow are represented as graphs where an every node is a transformation of it's inputs. They could be common layers like `Convolution` or `MaxPooling` and implemented in C++ or a custom ones
Deep learning networks in TensorFlow are represented as graphs where an every node is a transformation of it's inputs. They could be common layers like `Convolution` or `MaxPooling` and implemented in C++. Custom layers could be built by existing TensorFlow operations in python.