Skip to content

doc test fix #864

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

Merged
merged 1 commit into from
Oct 13, 2018
Merged
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
20 changes: 10 additions & 10 deletions docs/modules/prepro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -124,20 +124,20 @@ image augmentation often remains as a key bottleneck.
``tf.image`` has three limitations:

- Real-world visual tasks such as object detection, segmentation, and pose estimation
must cope with image meta-data (e.g., coordinates).
These data are beyond ``tf.image``
which processes images as tensors.
must cope with image meta-data (e.g., coordinates).
These data are beyond ``tf.image``
which processes images as tensors.

- ``tf.image`` operators
breaks the pure Python programing experience (i.e., users have to
use ``tf.py_func`` in order to call image functions written in Python); however,
frequent uses of ``tf.py_func`` slow down TensorFlow,
making users hard to balance flexibility and performance.
breaks the pure Python programing experience (i.e., users have to
use ``tf.py_func`` in order to call image functions written in Python); however,
frequent uses of ``tf.py_func`` slow down TensorFlow,
making users hard to balance flexibility and performance.

- ``tf.image`` API is inflexible. Image operations are
performed in an order. They are hard to jointly optimize. More importantly,
sequential image operations can significantly
reduces the quality of images, thus affecting training accuracy.
performed in an order. They are hard to jointly optimize. More importantly,
sequential image operations can significantly
reduces the quality of images, thus affecting training accuracy.


TensorLayer addresses these limitations by providing a
Expand Down