aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Merge pull request #21521 from Androbin:selectGravatar TensorFlower Gardener2018-08-10
|\ | | | | | | PiperOrigin-RevId: 208281031
* | Add support for the new metrics in Keras.Gravatar Pavithra Vijay2018-08-10
| | | | | | | | | | | | | | | | | | | | - Add support for stateful metrics, weighted metrics, metric masking in eager mode. - Updated masking logic for loss and metrics. (similar to weights in cl/207311700) - Add weighted_metrics to save and load model. - Add Categorical accuracy metric. - Migrating #21071 PiperOrigin-RevId: 208278596
* | Merge pull request #21191 from mattdodge:patch-1Gravatar TensorFlower Gardener2018-08-10
|\ \ | | | | | | | | | PiperOrigin-RevId: 208278273
* | | Correct a mistake in the lgamma documentationGravatar David Majnemer2018-08-10
| | | | | | | | | | | | | | | | | | The lower regularized incomplete Gamma function as defined in the documentation is P(a, x) but the heading for the function is Q(a, x). This is incorrect, Q(a, x) refers to the upper regularized incomplete Gamma function. PiperOrigin-RevId: 208277703
* | | Add tests for remote eager execution.Gravatar Akshay Modi2018-08-10
| | | | | | | | | | | | PiperOrigin-RevId: 208277185
* | | Lift the restriction in the docs that while loops can't be nested.Gravatar Dimitris Vardoulakis2018-08-10
| | | | | | | | | | | | PiperOrigin-RevId: 208276989
* | | Add two counters in Costs Struct for number of ops processed/predicted in ↵Gravatar Peter Ma2018-08-10
| | | | | | | | | | | | | | | | | | total, and number of ops predicted with unknown shapes PiperOrigin-RevId: 208274158
* | | Incremental update to the TFLite C APIGravatar Jared Duke2018-08-10
| | | | | | | | | | | | PiperOrigin-RevId: 208273960
* | | Add links to the C-api, and bazel-subproject instructions.Gravatar Mark Daoust2018-08-10
| | | | | | | | | | | | PiperOrigin-RevId: 208273008
* | | [tf.data] Minor API refactoring.Gravatar Jiri Simsa2018-08-10
| | | | | | | | | | | | | | | | | | Renaming `AddParentDataset`, `SaveParent`, and `RestoreParent` to `AddInputDataset`, `SaveInput`, and `RestoreInput`. PiperOrigin-RevId: 208272695
* | | Make FunctionLibraryDefinition thread-safe.Gravatar Akshay Agrawal2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The eager runtime mutates the FunctionLibraryRuntime's FunctionLibraryDefinition, which is shared across threads; at the same time, OpKernels might read the FunctionLibraryDefinition. This is not thread-safe unless FunctionLibraryDefinition is thread-safe. This change makes FunctionLibraryDefinition, which is basically a map from function names to FunctionDefs, thread-safe. This is almost entirely accomplished by guarding the map with a mutex. There is however one complication: Find and RemoveFunction cannot be made thread-safe in a straightforward way (Find returns a raw pointer to a FunctionDef while Remove can delete the corresponding FunctionDef). In light of the fact that clients only ever call RemoveFunction when they in fact want to replace an existing function with a new one, we make the following modifications to FunctionLibraryDefinition's API: 1. A Contains method is added to check for the existence of a function. 2. A ReplaceFunction method is added. 3. RemoveFunction and RemoveGradient are made private. We also update clients of the FunctionLibraryDefinition to use Contains & ReplaceFunction instead of Find and RemoveFunction. PiperOrigin-RevId: 208271076
* | | Automated rollback of commit 9eb310c3f651d69b9a8eea016f6397049c5a0a31Gravatar Anna R2018-08-10
| | | | | | | | | | | | PiperOrigin-RevId: 208270711
* | | Fix flaky layers test.Gravatar Akshay Agrawal2018-08-10
| | | | | | | | | | | | PiperOrigin-RevId: 208269820
* | | Merge pull request #21422 from ↵Gravatar TensorFlower Gardener2018-08-10
|\ \ \ | | | | | | | | | | | | | | | | | | | | gibiansky:bugfix/tensorflow-lib-internal-linkopt-pthread PiperOrigin-RevId: 208269546
* \ \ \ Merge pull request #20549 from naurril:bug-fix-grpc-serverGravatar TensorFlower Gardener2018-08-10
|\ \ \ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 208266944
* \ \ \ \ Merge pull request #21533 from yongtang:21525-tf.layers.denseGravatar TensorFlower Gardener2018-08-10
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208266859
* \ \ \ \ \ Merge pull request #19653 from theflofly:segment-sum-prodGravatar TensorFlower Gardener2018-08-10
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208266242
* | | | | | | Permit TensorFlow server to access Cloud Bigtable.Gravatar A. Unique TensorFlower2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208263100
* | | | | | | Fix unnecessary semicolon (lint warning)Gravatar Suharsh Sivakumar2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208262999
* | | | | | | Merge pull request #14842 from daj:gitignoreGravatar TensorFlower Gardener2018-08-10
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208262649
* | | | | | | | Use global counter for XLA rng seedGravatar Igor Ganichev2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208260479
* | | | | | | | Consolidate logic for configuring Keras Callbacks across different training ↵Gravatar A. Unique TensorFlower2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | loops. PiperOrigin-RevId: 208260082
* | | | | | | | Adding additional example for tf.keras and eager execution.Gravatar Josh Gordon2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208258892
* | | | | | | | Adding checkpointing codeGravatar Yash Katariya2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208257223
* | | | | | | | Merge pull request #21329 from melvinljy96:masterGravatar TensorFlower Gardener2018-08-10
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208257112
* | | | | | | | | BEGIN_PUBLICGravatar Akshay Agrawal2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rollback breaking change. END_PUBLIC Automated rollback of commit 20622daa9db9d403a66111f5682367566e2bb8db. Revert #21038. PiperOrigin-RevId: 208256026
* | | | | | | | | Fix incorrect early-out in partitioning.Gravatar Akshay Agrawal2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes a bug in which the arg and retval node indices weren't rewritten when a function was repartitioned by a StatefulPartitionedCallOp. Repartitioning can occur when the kernel is visited with a previously unseen FunctionLibraryRuntime. PiperOrigin-RevId: 208255736
* | | | | | | | | [TF:XLA] Bump open source llvm revision to r339409Gravatar Sanjoy Das2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208255199
* | | | | | | | | Merge pull request #21020 from XFeiF:masterGravatar TensorFlower Gardener2018-08-10
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208255132
* | | | | | | | | | Increase `control_flow_ops_test` size to large to fix timeoutGravatar Rachel Lim2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208255119
* | | | | | | | | | Fix keep alive stale condition.Gravatar Akshay Modi2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208254124
* | | | | | | | | | Merge pull request #21529 from brettkoonce:docs_src_spGravatar TensorFlower Gardener2018-08-10
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208253747
* \ \ \ \ \ \ \ \ \ \ Merge pull request #21539 from tensorflow:meteorcloudy-patch-1Gravatar TensorFlower Gardener2018-08-10
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208251834
* \ \ \ \ \ \ \ \ \ \ \ Merge pull request #21495 from av8ramit:merge110backGravatar TensorFlower Gardener2018-08-10
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208250121
* | | | | | | | | | | | | BEGIN_PUBLICGravatar Dan Ringwalt2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow a different output shape from the input in tf.contrib.image.transform (#17011). END_PUBLIC RELNOTES: Allow a different output shape from the input in tf.contrib.image.transform. Thanks qyu@ for making the original change and fixing a few other prior issues! Automated rollback of commit 07fdb697d33478d7a72d09fc2371fa834e870b83 PiperOrigin-RevId: 208248183
* | | | | | | | | | | | | Fix crash where model_path input to tflite python interpreter segv.Gravatar Andrew Selle2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix by holding reference to passed in model_content and relying on immutability of PyString (pointer doesn't change). PiperOrigin-RevId: 208244957
* | | | | | | | | | | | | Fix issue where `fit` could not be called on a Sequential that had been ↵Gravatar Francois Chollet2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | built manually. PiperOrigin-RevId: 208244600
* | | | | | | | | | | | | Merge pull request #20413 from Horstage:masterGravatar TensorFlower Gardener2018-08-10
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208244350
* | | | | | | | | | | | | | Remove references to std::string in MKL-related code.Gravatar A. Unique TensorFlower2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tensorflow::string is sometimes ::string and sometimes std::string, which makes code that uses both subtly dangerous. For example, FactoryKeyCreator::AddAsKey() has an overload for tensorflow::string but had many callsites passing a std::string, causing incorrect behavior on the google platform. PiperOrigin-RevId: 208244169
* | | | | | | | | | | | | | Add support for builtin abs() to AutographGravatar A. Unique TensorFlower2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208243676
* | | | | | | | | | | | | | Merge pull request #21514 from meteorcloudy:fix_dataops_with_vc2017Gravatar TensorFlower Gardener2018-08-10
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208238767
* | | | | | | | | | | | | | | Update the docs to clear re-creation of evaluation graph.Gravatar Mustafa Ispir2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #19062 PiperOrigin-RevId: 208235214
* | | | | | | | | | | | | | | Propagate local device to nodes without device annotations in PartitionedCallOp.Gravatar Akshay Agrawal2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208232511
* | | | | | | | | | | | | | | Merge pull request #21038 from recogni:dev-recogni/bug_20983Gravatar TensorFlower Gardener2018-08-10
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208232199
* | | | | | | | | | | | | | | | Use outer_graph to unique name of then/else fns.Gravatar Jacques Pienaar2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208229302
* | | | | | | | | | | | | | | | Adding HTTPS to link so a GIF displays properly.Gravatar Josh Gordon2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208223617
* | | | | | | | | | | | | | | | Change backend dep from core_cpu_internal to core_cpu_lib.Gravatar Jacques Pienaar2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208220542
* | | | | | | | | | | | | | | | [XLA] Enhance the HLO verifier to report errors for illegal Rng instructions.Gravatar Bixia Zheng2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Modify ShapeVerifier::HandleRng to detect illegal Rng instructions. Add test cases to test the handling of Rng instructions in the HLO verifier. Modify the document for XLA random operations to reflect the supported data types. PiperOrigin-RevId: 208220062
* | | | | | | | | | | | | | | | Automated rollback of commit 79387568f2860dd25f411a2e3ba764dabb76286dGravatar A. Unique TensorFlower2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208219138
* | | | | | | | | | | | | | | | made a small mistake while decorating with @tfe.defun. Fixing that.Gravatar Yash Katariya2018-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208218148