aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Automated rollback of change 139989725Gravatar A. Unique TensorFlower2016-12-02
| | | | Change: 140883595
* Add BatchNormalization layer class and its functional interface.Gravatar Francois Chollet2016-12-02
| | | | Change: 140880753
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-12-02
| | | | Change: 140878296
* removing tf.slice as it is soon to be deprecated. replaced with ↵Gravatar Olivia Nordquist2016-12-02
| | | | | | tf.strided_slice in the following 15 files. more to come! Change: 140875384
* Fixed a memory leak in the device lib swig wrapper.Gravatar Benoit Steiner2016-12-02
| | | | Change: 140871440
* Java: Introduce the Tensor class and conversions between Tensor and JavaGravatar Asim Shankar2016-12-02
| | | | | | | | | | | | | | | | | | | | | objects. See the added javadoc comments and unittests (TensorTest.java) for an explanation of the API. The conversion between Java types and the Tensor class does involve a single copy. For Java object -> TF_Tensor, a single JNI function (setValue) suffices. For TF_Tensor -> Java object, I couldn't work out a scheme that didn't require a separate JNI function for each primitive type and one JNI function for non-scalars. However, since all these JNI methods are private and not part of the exposed Java API, I figured the "cost" asymmetry in the conversion functions was worth the "benefit" of fewer JNI methods. Another step towards #5 Change: 140871139
* Remove an (ignored by compiler) instantation after specialization.Gravatar A. Unique TensorFlower2016-12-02
| | | | Change: 140870764
* Support additional types for HashTable kernel.Gravatar Wei Ho2016-12-02
| | | | | Internal BUILD visibility change Change: 140869738
* Fix update version script.Gravatar A. Unique TensorFlower2016-12-02
| | | | Change: 140864110
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2016-12-02
| | | | Change: 140860357
* Add experimental_jit_scope to support scoped compilation regions.Gravatar A. Unique TensorFlower2016-12-02
| | | | Change: 140860022
* Backwards compatibility bugfix for deprecated TensorArray C++ op.Gravatar Eugene Brevdo2016-12-02
| | | | Change: 140859776
* Fixing errors in comments. No dropout in the custom model example.Gravatar A. Unique TensorFlower2016-12-02
| | | | Change: 140858933
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-12-02
| | | | Change: 140857009
* Moves tf.contrib.losses into core, with changes.Gravatar A. Unique TensorFlower2016-12-02
| | | | Change: 140855283
* Modifies estimator predict API to stop after a single epoch if no queue_runner.Gravatar A. Unique TensorFlower2016-12-02
| | | | | | | | | | Previously, the predict API of the Evaluator, when called with only non-deprecated arguments, always returns a never-ending generator. This is counterintuitive and runs against our public documentation. This change modifies the predict API to only run through the input examples once, if there are no queue-runners and therefore the second epoch will be identical to the first. Change: 140854520
* Fix metric definitions in SavedModel.Gravatar Sukriti Ramesh2016-12-02
| | | | Change: 140854331
* Fix cache exception condition. When caching it is sometimes the case that we ↵Gravatar Joshua V. Dillon2016-12-02
| | | | | | | dont know both of x,y. I.e., if there's a direct implementation of the {forward,inverse}_log_det_jacobian then we won't bother computing the x or y. Also made several style fixes. Change: 140851970
* Added convenience function to filter a list of variables based on regular ↵Gravatar A. Unique TensorFlower2016-12-02
| | | | | | expressions. Change: 140845713
* Part 2b of renaming SparseTensor.shape -> SparseTensor.dense_shapeGravatar Eugene Brevdo2016-12-01
| | | | Change: 140820143
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140819761
* Don't evaluate checkpoints twice in continuous eval.Gravatar Martin Wicke2016-12-01
| | | | Change: 140819261
* Change the default value for num_epochs from None to 1 for input_fn under ↵Gravatar Jianwei Xie2016-12-01
| | | | | | learn_io package. Change: 140815606
* Part 2b of renaming SparseTensor.shape -> SparseTensor.dense_shapeGravatar Eugene Brevdo2016-12-01
| | | | Change: 140814270
* Part 2a of renaming SparseTensor.shape -> SparseTensor.dense_shapeGravatar Eugene Brevdo2016-12-01
| | | | Change: 140813882
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140813226
* Part 2b of renaming SparseTensor.shape -> SparseTensor.dense_shapeGravatar Eugene Brevdo2016-12-01
| | | | Change: 140811785
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140808119
* Add "-lm" to LLVM link options for llbm-tblgen. Fixes bazel build with ↵Gravatar Peter Hawkins2016-12-01
| | | | | | --config=cuda. Change: 140807677
* Fix doc typoGravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140807620
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140798911
* Provides links of tf.nn.rnn_cell.* under tf.contrib.rnn.Gravatar Jianwei Xie2016-12-01
| | | | Change: 140797107
* Remove tf.batch_matmul Python interface.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140796727
* Revert centered_bias_weight/Adagrad var name to backward-compatible name.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140794371
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140794278
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140793810
* Moves metrics/sets and tensor_util.convert_to_tensor_or_sparse_tensor from ↵Gravatar A. Unique TensorFlower2016-12-01
| | | | | | contrib to core. Change: 140793359
* Remove summary ops from tf namespace.Gravatar Dan Mané2016-12-01
| | | | | | | | | | | tf.histogram_summary, tf.scalar_summary, tf.audio_summary, tf.image_summary, tf.merge_all_summaries, tf.merge_summary are all removed. Nearly-identical and fully supported apis are available at tf.summary.histogram, tf.summary.scalar, tf.summary.audio, tf.summary.image, tf.summary.merge_all, tf.summary.merge The major change in the new API is that the summary "tag" is now actually the node name, which means the TF naming system will automatically deduplicate summary tags. If you need an exact match for the old API, you may use tf.contrib.deprecated.histogram_summary, etc, but these endpoints will eventually be removed. Change: 140792244
* Replace using of tf.contrib.deprecated.merge_all_summaries with ↵Gravatar Dan Mané2016-12-01
| | | | | | | tf.summary.merge_all The implementations are identical, tf.summary.merge_all is the canonical location. Change: 140790809
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140789077
* Make Saver support passing PartitionedVariables in the list/dictGravatar A. Unique TensorFlower2016-12-01
| | | | | of specific variables to save or restore. Change: 140788798
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140788482
* SparseTensor.shape -> SparseTensor.dense_shape part 1Gravatar Eugene Brevdo2016-12-01
| | | | | | | | | | | ... wherein the flawed protagonist adds temporary support for *both* versions of the property so that a followup change can perform the rename. A final change will then remove the old `shape`. Requires adding an iterator for SparseTensorValue because some folks use its tuple iterable property. Change: 140784809
* Add element_shape property to TensorArray creation op.Gravatar Eugene Brevdo2016-12-01
| | | | Change: 140784570
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140783483
* Adding numpy_input_fn to numpy_io to have an easy way to feed dict of numpy ↵Gravatar Jianwei Xie2016-12-01
| | | | | | arrays as input function. Change: 140782176
* Pass proper labels to metrics when labels dict is supplied.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140778111
* Add ability to conditionally batch in 'tf.train.batch`.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140778005
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-12-01
| | | | Change: 140777702
* Introduce CheckpointSaverListener interface.Gravatar David Soergel2016-12-01
| | | | Change: 140777101