aboutsummaryrefslogtreecommitdiffhomepage
path: root/RELEASE.md
diff options
context:
space:
mode:
authorGravatar Vijay Vasudevan <vrv@google.com>2015-12-11 23:03:16 -0800
committerGravatar Vijay Vasudevan <vrv@google.com>2015-12-11 23:03:16 -0800
commit10e62dc1e008d08cd877a0f891d486daba8f6288 (patch)
tree33e354d4733aba0d84fca1757a84c3e2e8d573de /RELEASE.md
parent0cf264b75605ff45cefddd9adeb17de6967e3e74 (diff)
TensorFlow: merge changes from internal
Change 110055925 Clean up interface for adjust_contrast and adjust_brightness. - Simplify kernel for adjust_contrast and remove all min/max and casts. - Change semantics of delta arg to adjust_brightness (always in [0,1)), and adjust users. - Add saturate_cast for casting images without over/underflow problems. - Add new numbers for adjust_contrast benchmark. This CL makes two changes to the public API: - It changes the semantics of the delta parameter of adjust_brightness, which was in the same range as the input image before, and now is always in [0,1). - It changes the semantics of adjust_contrast (the cc op), which wasn't hidden, but was shadowed by the python wrapper in image_ops. It's a little questionable whether this function was part of the public API. It definitely shouldn't have been. It is now hidden, although now it could be part of the public API, albeit with a different name. Change 110054427 update ci_build * add PYTHON_BIN_PATH and always run ./configure in ci_build * rename ci_build cache directory to bazel-ci_build-cache * sync ci_build/Dockerfile.cpu with docker/Dockerfile.devel * use "FROM nvidia/cuda:..." for gpu container * therefore no need of the tensorflow_extra_deps directory anymore * share install code between containers using ./install/*.sh scripts * do not inherit (and override FROM clausule in dockerfiles anymore) * print bazel test errors to stderr Change 110047126 Update ops.pbtxt. Change 110046428 Simplify the example for the Fill op. Base CL: 110056265
Diffstat (limited to 'RELEASE.md')
-rw-r--r--RELEASE.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/RELEASE.md b/RELEASE.md
index 69b4fa20a0..799113f23f 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -1,3 +1,16 @@
+# Changes since last release
+
+## Breaking changes to the API
+
+* `AdjustContrast` kernel deprecated, new kernel `AdjustContrastv2` takes and
+ outputs float only. `adjust_contrast` now takes all data types.
+* `adjust_brightness`'s `delta` argument is now always assumed to be in `[0,1]`
+ (as is the norm for images in floating point formats), independent of the
+ data type of the input image.
+* The image processing ops do not take `min` and `max` inputs any more, casting
+ safety is handled by `saturate_cast`, which makes sure over- and underflows
+ are handled before casting to data types with smaller ranges.
+
# Release 0.6.0
## Major Features and Improvements