aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Update copyright for 3p/tf.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123901292
* Update copyright for 3p/tf/core.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900938
* Update copyright for 3p/tf/python.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900456
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123898834
* Add trainable arg to fully_connected.Gravatar A. Unique TensorFlower2016-06-02
| | | | | | Add linear, relu, relu6. Remove legacy_relu6 and legacy_convolution2d. Change: 123898222
* TensorFlow: implement placement heuristic that takes generator nodesGravatar Vijay Vasudevan2016-06-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | (nodes with one non-ref output and one consumer), and places it preferentially with its consumer. For example: assign / \ var input In the above graph, assign is bound to the device of 'var' due to the reference edge. This heuristic binds 'input' to the same device as the assign, because it has only one consumer. This addresses the general problem of colocating initializers with their variables, and similar other cases. There are very few reasons to want to place the 'input' on a node other than its consumer (there are some contrived cases, but that's why this is a heuristic). This CL adds a test case for this small example above, illustrative of the general problem. An extension of this CL would be to do the same thing not just for single output / single consumer nodes, but whenever all out edges of a node connect to the same 'colcoation group'. Change: 123896863
* Adds scalar summary for the centered biases.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123889304
* Add contrib.framework and contrib.losses to gendocs.Gravatar A. Unique TensorFlower2016-06-02
| | | | | Improve docs for losses and metrics. Change: 123889291
* Update copyright for 3p/tf/tools.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123889091
* Update copyright for 3p/tf/tensorboard.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123888258
* Fix data race in constant folding.Gravatar Manjunath Kudlur2016-06-02
| | | | Change: 123887885
* Fix TensorBoard in Safari by not using ES6 constructs in our polymer components.Gravatar Dan Mané2016-06-02
| | | | Change: 123887298
* Upgrade typings to >version 1.Gravatar Dan Mané2016-06-02
| | | | | Required for fixing the jenkins build. Change: 123886969
* Test that tf.select propagates nans correctly, and change a zeros -> zeros_likeGravatar Geoffrey Irving2016-06-02
| | | | | | This is the result of the investigation of https://github.com/tensorflow/tensorflow/issues/2540 Change: 123879085
* Don't create a SummaryWriter for non-chiefs in graph_actions.train().Gravatar A. Unique TensorFlower2016-06-02
| | | | | Otherwise, the non-chiefs will write event files, which confuses TensorBoard. Change: 123874316
* Fix TensorBoard build dependenciesGravatar Shanqing Cai2016-06-02
| | | | | CL 123201123 moved numpy from install_deb_packages.sh to install_pip_packages.sh. So numpy needs to be added back to the TensorBoard install list in this file. Change: 123864373
* Removing initialization_done in copy_tensor.cc.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123860431
* Have the general TensorBoard tutorial point back to the TensorBoard README.Gravatar Dan Mané2016-06-02
| | | | Change: 123859598
* Add paper-dialog as a dependency in the open-source tensorboard index file.Gravatar Dan Mané2016-06-02
| | | | Change: 123858823
* Autogenerated Change: Update TensorBoard source and deps.Gravatar Dan Mané2016-06-02
| | | | Change: 123856343
* Fix for log_loss name change in learning_test.pyGravatar A. Unique TensorFlower2016-06-01
| | | | Change: 123831122
* Fix typo in TensorFlow tutorial.Gravatar A. Unique TensorFlower2016-06-01
| | | | Change: 123824296
* Adding learning and evaluation to Slim module.Gravatar A. Unique TensorFlower2016-06-01
| | | | Change: 123823861
* Rename tf.contrib.losses.log to tf.contrib.losses.log_lossGravatar A. Unique TensorFlower2016-06-01
| | | | Change: 123823505
* Add job_name to VariableDeviceChooserGravatar A. Unique TensorFlower2016-06-01
| | | | Change: 123823213
* Exclude test code from android sources.Gravatar A. Unique TensorFlower2016-06-01
| | | | Change: 123821982
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-06-01
| | | | Change: 123821418
* Move functions that depend on problem type (loss, metric, predictions) from ↵Gravatar A. Unique TensorFlower2016-06-01
| | | | | | base class to Classifier and Regressor. Change: 123818693
* Remove pylint: disable=g-bad-file-header.Gravatar A. Unique TensorFlower2016-06-01
| | | | Change: 123811386
* Add TF_EXTRA_CUDA_CAPABILITIES to support extra Cuda compute capabilities. TheGravatar Xiaoqiang Zheng2016-06-01
| | | | | | | | | list of extra cuda capabilities must be passed through in a sequence separated by commas. With bazel, the build command arguments to include "3.0" is: --copt=-DTF_EXTRA_CUDA_CAPABILITIES=3.0 Change: 123810335
* Update copyright for 3p/tf/examples/android.Gravatar A. Unique TensorFlower2016-06-01
| | | | Change: 123808718
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-06-01
| | | | Change: 123806454
* Prevents the fetching of internal nodes defined in a while loop or cond branch.Gravatar Derek Murray2016-06-01
| | | | | Fixes #2575. Change: 123805910
* Add SSL target to TensorFlow's Boringssl BUILD files. Also make genrule ↵Gravatar Kiril Gorovoy2016-06-01
| | | | | | trick work when TF is imported as a submodule. Change: 123805260
* changing test file names, forgot to add to last CLGravatar Olivia Nordquist2016-06-01
| | | | Change: 123801187
* Remove dual and primal_loss variables from variables dict created in ↵Gravatar A. Unique TensorFlower2016-06-01
| | | | | | auxiliary test method make_dense_variable_dict. These 2 variables are nowhere used in SDCASolver. Right now this auxiliary method is more confusing than helpful. Change: 123799466
* TensorArray now has infer_shape = True by default.Gravatar Eugene Brevdo2016-06-01
| | | | Change: 123796192
* renaming filesGravatar Olivia Nordquist2016-06-01
| | | | Change: 123791949
* Adding a new cc_library for Android which supports selectiveGravatar A. Unique TensorFlower2016-06-01
| | | | | registration. Change: 123787111
* Reshaped real valued column for DNN input layer.Gravatar Mustafa Ispir2016-06-01
| | | | Change: 123786681
* Catch some more cases in reduction_ops_test.py.Gravatar Zongheng Yang2016-06-01
| | | | | | | In particular, I ran into a case where `tf.reduce_mean(.., None)` was not properly covered, and that surprised me during some other related change. Change: 123775966
* Handle failures to allocate during FromProto in Tensor class + tests.Gravatar Vijay Vasudevan2016-06-01
| | | | Change: 123769695
* Change function library to use a runner passed in from the Run call, instead ofGravatar A. Unique TensorFlower2016-06-01
| | | | | | | | one from library-construction time. This is to properly support inter-op thread pools with the function library. Also change testlib graph construction to pass through the Graph's op_registry. Change: 123761344
* Update router code to understand run_metadata and update the ↵Gravatar Nikhil Thorat2016-06-01
| | | | | | | serialize_tensorboard script to write run metadata to a separate file. Change: 123756242
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-05-31
| | | | Change: 123716704
* Add parameter N to Dirichlet-Multinomial Distribution.Gravatar A. Unique TensorFlower2016-05-31
| | | | Change: 123716189
* Remove ShapeN from "IsMetadataOp" private function. In this case,Gravatar Vijay Vasudevan2016-05-31
| | | | | | ShapeN may have many inputs, so just looking at the first one is probably not the right thing to do. Change: 123714692
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-05-31
| | | | Change: 123712620
* Add IndexedSlices and SparseTensor support for control flow ops.Gravatar Yuan Yu2016-05-31
| | | | Change: 123710536
* Use reduction_indices=[-1] as opposed to the rank. This ensures the properGravatar A. Unique TensorFlower2016-05-31
| | | | | | shape to be inferred as well as let's us avoid setting the static shape of the result. Change: 123710096