aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib
Commit message (Collapse)AuthorAge
...
* | | | | | | Removes the INTEL_MKL_ML_ONLY option from the CMakeLists build file since ↵Gravatar Penporn Koanantakool2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the main logic for INTEL_MKL_ML_ONLY is getting removed in PR#22783. #22783 PiperOrigin-RevId: 215978712
* | | | | | | Add DistributionStrategy support to moving average APIs.Gravatar A. Unique TensorFlower2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #21405. PiperOrigin-RevId: 215973401
| | * | | | | Expand stateless random generators to match their stateful cousinsGravatar Geoffrey Irving2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | stateless_random_uniform now take minval+maxval and handles ints, and stateless_normal/stateless_truncated_normal take mean+stddev. Additionally, all of the stateless functions now have proper doc strings. This is step one of moving stateless random numbers out of contrib.
* | | | | | | Add deprecation call-out for tf_mobileGravatar A. Unique TensorFlower2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215971335
* | | | | | | Handle Range & BatchMatMul in partial Flex modeGravatar Yu-Cheng Ling2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215957535
* | | | | | | Internal change.Gravatar A. Unique TensorFlower2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215951354
* | | | | | | Brings V2 Optimizers into Keras w/ Keras signaturesGravatar A. Unique TensorFlower2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215950207
* | | | | | | Profiler collects the number of replicas and num cores per replica used in ↵Gravatar A. Unique TensorFlower2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the model. PiperOrigin-RevId: 215947354
* | | | | | | Disable micro/examples/micro_speech:micro_speech_test test under msanGravatar Smit Hinsu2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215939542
| * | | | | | make sparsemax nan and infinity safeGravatar Andreas Madsen2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | logits that are -inf will be given 0 probability and logits that are inf will result in a nan output. Likewise if all logits are -inf the output will also be nan. This is done by using where operators, mostly because 0 * inf = nan and x/0 = sign(x) inf following the IEEE 754 standard. However these results are not mathematically correct in the context of the sparsemax algorithm. Fixes: https://github.com/tensorflow/tensorflow/issues/15564
* | | | | | | Refactoring TFLite export code. Unify OperatorCode generation logic.Gravatar Yu-Cheng Ling2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215928419
* | | | | | | - Don't set tpu optimizer parameter variable during weight initialization if ↵Gravatar Jing Li2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the optimizer isn't set, e.g. loading weights and then predict. - Add load_weights for `KerasTpuModel`. PiperOrigin-RevId: 215920993
* | | | | | | Relax some unnecessary 4D array restrictionsGravatar A. Unique TensorFlower2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215910400
* | | | | | | Merge the different LSTM EvalFloat/EvalHybrid calls into a single file.Gravatar A. Unique TensorFlower2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215870962
* | | | | | | Remove dependency on epsilon for diagonal shampoo.Gravatar A. Unique TensorFlower2018-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215857772
* | | | | | | Fix link in eager notebook stub.Gravatar Billy Lamberta2018-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215853105
* | | | | | | Add 'device' property to TPUMirroredVariable, so ↵Gravatar Ruoxin Sang2018-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tf.train.init_from_checkpoint can be supported. PiperOrigin-RevId: 215843249
* | | | | | | Add Chaos Free Network (CFN) cell.Gravatar A. Unique TensorFlower2018-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The implementation is based on: https://openreview.net/pdf?id=S1dIzvclg. PiperOrigin-RevId: 215824867
* | | | | | | Disable tensorrt:unary_test in OSS since it crashes with SEGV.Gravatar Todd Wang2018-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215814732
* | | | | | | Fix for memory issue in micro test code, spotted by asan checksGravatar Pete Warden2018-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215813259
* | | | | | | Internal change.Gravatar A. Unique TensorFlower2018-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215806953
* | | | | | | Fix problem in quantized version of Comparison op handlerGravatar A. Unique TensorFlower2018-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215801773
* | | | | | | Use weak symbols to inject flex delegatesGravatar Jared Duke2018-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215788183
* | | | | | | Add xla library into contrib_pyGravatar Yanan Cao2018-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215774158
* | | | | | | Automated rollback of commit 8dc7bc7764150253c03a666eee84fc48f867d6a2Gravatar A. Unique TensorFlower2018-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215768310
* | | | | | | Fix quantization util test to pass with defined behavior on 32-bit ↵Gravatar Alan Chiao2018-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | architectures. PiperOrigin-RevId: 215757844
* | | | | | | Skip numeric checking in BROADCAST mode.Gravatar Youlong Cheng2018-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215752559
* | | | | | | Experimental interpreter, kernels, and example running TensorFlow Lite on a ↵Gravatar Pete Warden2018-10-04
| |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | microcontroller PiperOrigin-RevId: 215748973
| | | | | * Update rnn_cell.pyGravatar Tingbo Lu2018-10-05
| |_|_|_|/ |/| | | |
* | | | | Sparse output fully connected custom op.Gravatar Alan Chiao2018-10-04
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215741296
* | | | | Internal change.Gravatar A. Unique TensorFlower2018-10-04
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215711454
* | | | | BEGIN_PUBLICGravatar Mingxing Tan2018-10-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rollback some quantization changes that breaks some models. END_PUBLIC Automated rollback of commit d3f14ef70cdf113f9d330c1f7c638003429a1dc4. Revert #19894. PiperOrigin-RevId: 215678307
* | | | | Fix a test.Gravatar Shashi Shekhar2018-10-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - SetCustomOp also sets the name of the custom op. Test was checking against the wrong name in the profile. PiperOrigin-RevId: 215665359
* | | | | Automated rollback of commit c1b3b0b9e041d82e80c2cdcc623a387753daf0b4Gravatar Anna R2018-10-03
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215658770
* | | | | TFLite Flex: Blacklist Control Flow OpsGravatar Yu-Cheng Ling2018-10-03
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215658384
* | | | | Add MinimalRNN cell.Gravatar A. Unique TensorFlower2018-10-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The implementation is based on: https://arxiv.org/pdf/1806.05394v2.pdf. PiperOrigin-RevId: 215655857
* | | | | Increase error-epsilon for ProfilingTest::ProfilesAreCollected.Gravatar Todd Wang2018-10-03
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215654327
* | | | | Fix 1970s-style bug in LogSoftmax eval.Gravatar A. Unique TensorFlower2018-10-03
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215653797
* | | | | Create new classes for Keras tests to allow us to create new test targets.Gravatar Anjali Sridhar2018-10-03
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215653650
* | | | | Update size of mvn_diag_test and core_rnn_cell_test to medium to fix timeoutsGravatar Smit Hinsu2018-10-03
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215651746
* | | | | Reduce batch sizes for some eager tests to prevert OOMs in OSS runsGravatar Todd Wang2018-10-03
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215651413
* | | | | Merge pull request #22591 from EFanZh:fix-docsGravatar TensorFlower Gardener2018-10-03
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215639962
* | | | | | Add a require_static_shapes argument to DistributionStrategy class. This ↵Gravatar Anjali Sridhar2018-10-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | allows us to identify if we need to set the drop_remainder option when creating Dataset objects. PiperOrigin-RevId: 215633097
* | | | | | Internal change.Gravatar Anna R2018-10-03
| | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215631612
* | | | | | Add NNAPI padding enums to NeuralNetworksShim.hGravatar A. Unique TensorFlower2018-10-03
| | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215628561
* | | | | | Tests for metrics correctness with TPU strategyGravatar Priya Gupta2018-10-03
| | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215618809
* | | | | | Add the option of merging bidirectional RNN and LSTM outputs into a single ↵Gravatar A. Unique TensorFlower2018-10-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | output tensor. This is useful if the output of both directions will be passed to the next layer as a single output, as it avoids adding a concatenation op, which can be expensive on mobile devices where memory movement is relatively expensive. PiperOrigin-RevId: 215616140
* | | | | | Merge pull request #22671 from ↵Gravatar TensorFlower Gardener2018-10-03
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | dmitrievanthony:apache-ignite-dataset-fixes-after-initial-merge PiperOrigin-RevId: 215593528
* | | | | | | Supports TPUEstimatorSpec in multi_head for TRAIN and PREDICT modes.Gravatar A. Unique TensorFlower2018-10-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215590676
* | | | | | | Internal change.Gravatar Nupur Garg2018-10-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 215589009