aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow
Commit message (Collapse)AuthorAge
...
* When allocating GPU constants, check to see if the destinationGravatar Vijay Vasudevan2017-04-28
| | | | | | | | tensor is intialized early (because we ran out of memory) and report it as such. Fixes #7025. Change: 154603030
* Fixup tf.contrib.labeled_tensor.select to handle tuples properlyGravatar Stephan Hoyer2017-04-28
| | | | | | You can use a tuple to label a point along an axis, so tuples should not be converted into lists of points for indexing. Change: 154603014
* Add bool field inaccurate to Costs.Gravatar Yao Zhang2017-04-28
| | | | Change: 154602604
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154598657
* Remove or warn about nn_ops accidentally registered to intsGravatar Geoffrey Irving2017-04-28
| | | | | | | | | | | Several nn_ops were registered for ints accidentally. Some of these even have kernel registrations for ints which do very strange things. The ops without kernels registered have been restricted to floating point types, and warnings have been added for those with kernels. Other ops were registered with more float types than they had kernels for. Fixes #9317. Fixes #5539. Change: 154595629
* Document that tf.train.batch is nondeterministicGravatar Geoffrey Irving2017-04-28
| | | | | Fixes #9441. Change: 154593819
* Fix losses.get_regularization_losses documentation to avoid implying losses ↵Gravatar A. Unique TensorFlower2017-04-28
| | | | | | are Variables. Change: 154593246
* [XLA] Make HLO ordering module-scoped.Gravatar Mark Heffernan2017-04-28
| | | | | Add comparison of ordering of HLO instructions which are in different computations using the call graph. Previously, instructions in different computations were considered unordered. Ordering these instructions improves buffer liveness analysis and may enable better buffer sharing between values in different computations. Change: 154592912
* Added expalanation when to use embedding_lookup_sparse instead of ↵Gravatar Mustafa Ispir2017-04-28
| | | | | | | sparse_tensor_dense_matmul. Fixes #8131 Change: 154591681
* Documentation fixes for TF Layers tutorial (see #8301)Gravatar Neal Wu2017-04-28
| | | | Change: 154591046
* Improve docstring on strided_slice to refer users to easier function.Gravatar Andrew Selle2017-04-28
| | | | | Fixes #5761 Change: 154590417
* Go: Update generated wrapper functions for TensorFlow ops.Gravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154590336
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154589265
* Update documentation to drop GPU support on osx for 1.2Gravatar Alexandre Passos2017-04-28
| | | | Change: 154589003
* Clarify candidate sampling ops documentationGravatar A. Unique TensorFlower2017-04-28
| | | | | | | Removes incorrect "per batch" language. Fixes #3824. Change: 154587896
* Documented naming insconsistence of variable_scope where reuse on and other ↵Gravatar Mustafa Ispir2017-04-28
| | | | | | ops doesn't share the scope. Change: 154586285
* Small comment fix.Gravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154586226
* Support label_keys in DNNLinearCombinedClassifier and in LinearClassifier.Gravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154585848
* Adds support for repeated images when parsing examples.Gravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154584953
* Improves shared_name documentation for string_input_producerGravatar Alexandre Passos2017-04-28
| | | | Change: 154584844
* Go: Update generated wrapper functions for TensorFlow ops.Gravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154584479
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154583581
* [TF:XLA:GPU] Guard the contents of the :xla_gpu_jit target with an if_cuda() ↵Gravatar Peter Hawkins2017-04-28
| | | | | | check. The XLA GPU JIT can only be used if the Tensorflow GPU device exists, which requires that we compile with CUDA. Change: 154582511
* Remove broken link.Gravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154582184
* Fix shape documentation for tf.gather_nd and tf.scatter_ndGravatar Geoffrey Irving2017-04-28
| | | | | | | The new version of the shape documentation for both ops is hopefully correct and doesn't introduce temporary variables. Additionally, tf.scatter_nd warns about nondeterministic behavior if indices contains duplicates. Fixes #8245. Fixes #8102. Change: 154581230
* Make Python API TOC sort deterministic.Gravatar Mark Daoust2017-04-28
| | | | Change: 154579657
* Apply the grappler graph optimizations on the Inception model: this improves ↵Gravatar Benoit Steiner2017-04-28
| | | | | | the performance by almost 20% on my GPU (from 55 images/s to 62 images/s) Change: 154578655
* clarify documentation on a deprecated fnGravatar Olivia Nordquist2017-04-28
| | | | Change: 154578604
* Fixes bug in state_ops.assign for PartitionedVariablesGravatar Alexandre Passos2017-04-28
| | | | Change: 154577958
* Update link to docs.Gravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154575206
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154572855
* [TF:XLA] Improve constant folding. Supply a null partition_device so the ↵Gravatar Peter Hawkins2017-04-28
| | | | | | | | | constant folder will constant-fold DT_INT32 operators. Tensorflow core: Add support for constant folding of nodes with control dependencies. Mark candidate sampling ops as stateful; the constant-folder was now constant-folding them where it should not. Change: 154572578
* We don't promise to keep error messages constant.Gravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154571409
* Doc only change: Describe the purpose of accumulate_nGravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154569724
* updating the gradient descent to be as good as promisedGravatar Olivia Nordquist2017-04-28
| | | | Change: 154568808
* [XLA] Check for broadcast literal values in addition to constants in simplifier.Gravatar A. Unique TensorFlower2017-04-28
| | | | Change: 154567986
* Clarifies the singular value ordering.Gravatar Alexandre Passos2017-04-28
| | | | Change: 154566292
* Started to graduate FeatureColumn from contrib to core.Gravatar Mustafa Ispir2017-04-28
| | | | Change: 154565789
* Java: Refer to installation instructions on www.tensorflow.org in the READMEGravatar Asim Shankar2017-04-28
| | | | Change: 154564406
* Fix formatting on Estimator __init__ docstring.Gravatar Martin Wicke2017-04-28
| | | | Change: 154562449
* Catch TypeError and add improved failure message for hparam parsing.Gravatar Adam Roberts2017-04-28
| | | | Change: 154556754
* Fix links to tensorflow/modelsGravatar Mark Daoust2017-04-28
| | | | | Fixes #8809 Change: 154553141
* Fix SummaryAtEndHook when used with tf.learn's ExperimentGravatar Stephan Hoyer2017-04-28
| | | | Change: 154548095
* Record input feature keys in exported SavedModel as a CollectionDef.Gravatar David Soergel2017-04-28
| | | | Change: 154547403
* Allow FakeQuantWithMinMaxVars to be used with quantize_training rewriter.Gravatar Suharsh Sivakumar2017-04-27
| | | | Change: 154507631
* Fix call to with_dependencies.Gravatar Suharsh Sivakumar2017-04-27
| | | | Change: 154501275
* Adds the following ops to android_extended_ops_group2:Gravatar A. Unique TensorFlower2017-04-27
| | | | | "reduction_ops_all.cc", Change: 154499070
* Fixes alignment issue with nearest neighbor interpolation when ↵Gravatar A. Unique TensorFlower2017-04-27
| | | | | | align_corners=True. In particular, we change floorf() to roundf() in discretizing the continuous coordinates when align_corners=True. Change: 154492447
* [XLA] Fix CHECK failure in rematerialization.Gravatar Mark Heffernan2017-04-27
| | | | | cl/154253719 added a CHECK which fails if a value (LogicalBuffer) is used more than once by an instruction. This resulted in duplicate values in a list of uses. Change: 154485725
* Pass attention_wrapper's name to super.Gravatar A. Unique TensorFlower2017-04-27
| | | | Change: 154483923