1. 17 12月, 2015 5 次提交
  2. 16 12月, 2015 19 次提交
  3. 15 12月, 2015 7 次提交
  4. 12 12月, 2015 6 次提交
    • V
      TensorFlow: merge changes from internal · 10e62dc1
      Vijay Vasudevan 提交于
      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
      10e62dc1
    • V
      TensorFlow: merge changes from internal · 0cf264b7
      Vijay Vasudevan 提交于
      Change 110044026
      	Wrap comment in build_pip_package.sh
      
      Base CL: 110044081
      0cf264b7
    • V
      TensorFlow: merge changes from internal · 714618af
      Vijay Vasudevan 提交于
      Change 110024345
      	Removed the unary operator restriction on MaxPool so we can reuse it more flexibly in the future
      
      Base CL: 110043747
      714618af
    • V
      TensorFlow: merge changes from internal · 7fb82f18
      Vijay Vasudevan 提交于
      Base CL: 110018194
      7fb82f18
    • V
      TensorFlow: merge changes from internal · 0a21a38d
      Vijay Vasudevan 提交于
      Change 110010103
      	Implementing SparseSplitOp.
      	The op takes a sparse tensor (list, values and shape), split_dim and num_splits and produces a list of num_splits tensors where the shape of each tensor is the shape of the original tensor except split_dim = shape[split_dim +num_split - 1 / num_split]. in case if shape[split_dim] is not an integer multiple of num_split an extra one dimension get added to the slices starting from 0.
      	For example if the input shape is a [2, 10] split_dim = 1, num_split = 3
      	output shapes will be [[2, 4], [2, 4], [2, 2]].
      
      	The Op register shape to [Unknown, dim] for indices tensors and [Unknown] for the values tensor because shape can't be inferred without evaluate input tensors.
      
      Base CL: 110012853
      0a21a38d
    • V
      TensorFlow: merge changes from internal · bc624aa8
      Vijay Vasudevan 提交于
      Change 110004767
      	Add Cast to list of supported ConstantValue ops, mainly useful for shape inference
      Change 110002200
      	Bug fix for b/24814668. The fix uses mdevin's CL/109324239, which adds support to clear control dependency and control flow contexts.
      
      	Bug fix for b/25914830. We now clear the control related contexts for initial values of variables in adagrad.
      Change 110000213
      	Further (minor) improvements to print usage in docs and tutorials
      Change 109975099
      	Update `tensor_util.ConstantValue()` to return scalars when appropriate.
      
      	The `ConstantValue()` implementations for `tf.size()` and `tf.rank()`
      	were returning single-element numpy vectors, whereas the op
      	implementations produce scalar outputs.
      Change 109950165
      	TensorBoard tag to 5
      
      Base CL: 110006867
      bc624aa8
  5. 11 12月, 2015 3 次提交