aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/timeseries
Commit message (Collapse)AuthorAge
* Add 'remove' operation to MutableHashTable and MutableDenseHashTable.Gravatar A. Unique TensorFlower2018-10-09
| | | | PiperOrigin-RevId: 216443201
* Automated rollback of commit 5f822d694af6e4aa57fe8a426032a91dc61e30d6Gravatar Alexandre Passos2018-10-01
| | | | PiperOrigin-RevId: 215239710
* Internal change.Gravatar Revan Sopher2018-09-28
| | | | PiperOrigin-RevId: 215025019
* fix broken tests.Gravatar A. Unique TensorFlower2018-09-28
| | | | PiperOrigin-RevId: 215010842
* Reduce the size of //tensorflow/tools/pip_package:simple_console_windowsGravatar A. Unique TensorFlower2018-09-27
| | | | | | | | This change reduce the size of //tensorflow/tools/pip_package:simple_console_windows's zip file from 1000027677 bytes to 47690474 bytes for a CPU build. For GPU build, it will avoid going over 4GB when multiple CUDA compatibility are specified. To fix #22390 PiperOrigin-RevId: 214764423
* Merge branch 'master' into fix_expand_dimsGravatar Martin Wicke2018-09-22
|\
| * Wrap ARModel and LSTMPredictionModel into an LSTMAutoRegressor estimatorGravatar A. Unique TensorFlower2018-09-21
| | | | | | | | PiperOrigin-RevId: 214091820
| * Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-09-12
| | | | | | | | | | | | | | | | self.test_session() has been deprecated in 9962eb5e84b15e309410071b06c2ed2d6148ed44 as its name confuses readers of the test. Moving to cached_session() instead which is more explicit about: * the fact that the session may be reused. * the session is not closed even when doing a "with self.test_session()" statement. PiperOrigin-RevId: 212725342
| * Rename "_periods" private property in ARModel with "_periodicities" to make ↵Gravatar A. Unique TensorFlower2018-09-11
| | | | | | | | | | | | it more accurate. PiperOrigin-RevId: 212555968
| * TFTS: Fix an input statistics race conditionGravatar Allen Lavoie2018-09-11
| | | | | | | | | | | | The fix is straightforward enough, although the triggering circumstances are still a bit mysterious. The unit test did fail with ubsan prior to this CL, so I'm going to leave it at that for now. PiperOrigin-RevId: 212465732
| * Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-09-10
| | | | | | | | | | | | | | | | self.test_session() has been deprecated in 9962eb5e84b15e309410071b06c2ed2d6148ed44 as its name confuses readers of the test. Moving to cached_session() instead which is more explicit about: * the fact that the session may be reused. * the session is not closed even when doing a "with self.test_session()" statement. PiperOrigin-RevId: 212348850
| * Fix "estimator" spelling in contrib/timeseries/examples/known_anomaly.pyGravatar A. Unique TensorFlower2018-08-27
| | | | | | | | PiperOrigin-RevId: 210407945
| * Duplicate a //tensorflow/contrib/timeseries/examples:predict_test data depGravatar Allen Lavoie2018-08-22
| | | | | | | | | | | | Apparently it's not inherited from its py_binary dep for pip tests PiperOrigin-RevId: 209848894
| * Move from deprecated self.test_session() to self.session() when a graph is set.Gravatar A. Unique TensorFlower2018-08-21
| | | | | | | | | | | | self.test_session() has been deprecated in cl/208545396 as its behavior confuses readers of the test. Moving to self.session() instead. PiperOrigin-RevId: 209696110
| * Make the "predict" time series example more user friendly.Gravatar Allen Lavoie2018-08-20
| | | | | | | | | | | | Doesn't require an input_filename flag, uses the default example input instead. PiperOrigin-RevId: 209518060
| * TFTS: Export an average_loss metricGravatar Allen Lavoie2018-08-20
| | | | | | | | PiperOrigin-RevId: 209498358
| * More deflaking for ar_model_testGravatar Allen Lavoie2018-08-17
| | | | | | | | | | | | I saw a MacOS flake after cl/208297005. Something platform-dependent seems to be going on. PiperOrigin-RevId: 209220306
| * TFTS: de-flake ar_model_testGravatar Allen Lavoie2018-08-10
| | | | | | | | PiperOrigin-RevId: 208297005
| * Fix estimator dependencies in contrib/.Gravatar Michael Case2018-08-09
| | | | | | | | PiperOrigin-RevId: 208126204
| * TFTS: Don't return model state from OneShotPredictionHead evaluate()Gravatar Allen Lavoie2018-08-07
| | | | | | | | | | | | It doesn't need to be fed (OneShot), and returning it as a tuple causes some issues for evaluation infrastructure. PiperOrigin-RevId: 207820650
| * TFTS: Add a parsing serving_input_receiver_fn for tf.Example protosGravatar Allen Lavoie2018-08-01
| | | | | | | | | | | | Works with the one-shot head (no model state in the tf.Example proto). PiperOrigin-RevId: 206988925
| * TFTS: axis=<list> -> axis=<tuple> in numpy.squeezeGravatar Allen Lavoie2018-07-30
| | | | | | | | | | | | Apparently lists and tuples behave differently in some numpy versions. PiperOrigin-RevId: 206616759
| * Update size of timeseries:head_test to large to avoid timeoutsGravatar Smit Hinsu2018-07-09
| | | | | | | | PiperOrigin-RevId: 203806903
| * TFTS: Add a head config option to StructuralEnsembleRegressorGravatar Allen Lavoie2018-07-03
| | | | | | | | | | | | Adds a unit test for OneShotHead, fiddles with the train_op to deal with a dtype error the new unit tests uncovered. PiperOrigin-RevId: 203179477
| * Automated g4 rollback of changelist 202000826Gravatar A. Unique TensorFlower2018-06-26
| | | | | | | | PiperOrigin-RevId: 202115471
| * Uses resource variables by default for the global step.Gravatar Alexandre Passos2018-06-25
| | | | | | | | | | | | Relnotes: hooks will now see deterministically the value of the global step before updating instead of the value after updating. PiperOrigin-RevId: 202000826
| * contrib.timeseries: sets the predictions dict in EstimatorSpec for ↵Gravatar Younghee Kwon2018-06-15
| | | | | | | | | | | | evaluation op. PiperOrigin-RevId: 200747192
| * Move Keras code out of _impl folder and remove API files.Gravatar Pavithra Vijay2018-05-17
| | | | | | | | PiperOrigin-RevId: 197097430
| * TFTS: Make estimators_test non-flakyGravatar Allen Lavoie2018-05-09
| | | | | | | | | | | | Replaces a "loss decreased" check with basic shape checking (it should have been seeded already, so there's likely some race condition which I should track down...). PiperOrigin-RevId: 196001526
| * Test tensorflow/contrib/timeseries/python/timeseries:estimators_test only in ↵Gravatar A. Unique TensorFlower2018-05-09
| | | | | | | | | | | | opt mode to avoid flaky timeouts PiperOrigin-RevId: 195993828
| * TFTS: Make it easier to swap in different autoregressive models.Gravatar Allen Lavoie2018-05-04
| | | | | | | | | | | | | | | | Adds a very simple LSTM encoder/decoder option as an example. ARModel's new constructor argument is a bit awkward, since Estimator's new graphs mean we need a Model factory rather than a Model (or to un-build the model?). It's still a much more pleasant way to write autoregressive models than fiddling with ARModel directly, since ARModel handles collecting all the features (and the prediction loop, etc.). Happy to hear other ideas for an API. PiperOrigin-RevId: 195436186
| * Sharding for ↵Gravatar Allen Lavoie2018-05-01
| | | | | | | | | | | | tensorflow/contrib/timeseries/python/timeseries/state_space_models:structural_ensemble_test PiperOrigin-RevId: 195019968
| * Merge changes from github.Gravatar Patrick Nguyen2018-05-01
| | | | | | | | PiperOrigin-RevId: 194997009
| * Merge changes from github.Gravatar Yifei Feng2018-04-23
| | | | | | | | PiperOrigin-RevId: 194031845
| * TFTS: Support exogenous features in ARRegressorGravatar Allen Lavoie2018-04-23
| | | | | | | | | | | | | | | | | | | | They get flattened with the endogenous features as input to the model. Unlike endogenous features, they're specified for the whole window when making predictions. Adds an ARRegressor example which uses exogenous features. PiperOrigin-RevId: 194006630
| * Internal change.Gravatar Allen Lavoie2018-04-17
| | | | | | | | PiperOrigin-RevId: 193246563
* | Fix expand_dims of dims argument has been deprecated with axisGravatar imsheridan2018-04-17
|/
* Merge changes from github.Gravatar Michael Case2018-04-10
| | | | PiperOrigin-RevId: 192388250
* TFTS: De-flake the LSTM testGravatar Allen Lavoie2018-04-10
| | | | | | Disabling the value-based check for now. Hopefully the shapes are deterministic. PiperOrigin-RevId: 192383553
* Windows: Enable tensorflow/contrib in Bazel build (Second try)Gravatar A. Unique TensorFlower2018-04-02
| | | | | | This reverts commit 4e108ef30d7cd7ae5e1c550ec5ae27e79b8c6e39. PiperOrigin-RevId: 191391075
* TFTS: Add a OneShotPredictionHead with no model state in its serving signature.Gravatar Allen Lavoie2018-04-02
| | | | PiperOrigin-RevId: 191373516
* TFTS: Clean up the cold start SignatureDef.Gravatar Allen Lavoie2018-04-02
| | | | | | Removes state where it wasn't used. PiperOrigin-RevId: 191324834
* Automated g4 rollback of changelist 190858242Gravatar Jianwei Xie2018-03-29
| | | | PiperOrigin-RevId: 190953197
* Remove all_opensource_files. It's not needed any more.Gravatar Martin Wicke2018-03-28
| | | | PiperOrigin-RevId: 190878279
* Automated g4 rollback of changelist 190835392Gravatar Anna R2018-03-28
| | | | PiperOrigin-RevId: 190858242
* Merge changes from github.Gravatar Jianwei Xie2018-03-28
| | | | PiperOrigin-RevId: 190835392
* TFTS: Fix a bug in the SavedModel cold-start exportGravatar Allen Lavoie2018-03-27
| | | | | | | It now correctly broadcasts start state across whatever batch dimension it is passed rather than sqishing it down to a batch dimension of 1. PiperOrigin-RevId: 190688855
* TFTS: Allow cold-starting from SavedModelsGravatar Allen Lavoie2018-03-16
| | | | | | | | | | | | | | | | This means the model starts from its default start state and is fed a series (filtering) to warm up its state. This warmed up state can then be used to make predictions. Some shape fiddling with the receiver_fn to make feeding state optional, and a new signature for cold-starting which uses the model's default start state. Some other shape fiddling to make feeding strings to SavedModels work more smoothly in the cold-start part of the LSTM example. I was squeezing out the last dimension of "scalar" exogenous features, now I'm leaving them, which matches the placeholder generation logic. PiperOrigin-RevId: 189414869
* Automated g4 rollback of changelist 189231636Gravatar A. Unique TensorFlower2018-03-15
| | | | PiperOrigin-RevId: 189258641
* Merge changes from github.Gravatar Jacques Pienaar2018-03-15
| | | | PiperOrigin-RevId: 189231636