aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/integrate
Commit message (Collapse)AuthorAge
* 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: 212336321
* Remove magic-doc-links from code.Gravatar Mark Daoust2018-08-16
| | | | | | | | | | This change contains no code changes. Only doc-strings. We can't use relative links in code files, so we don't have much choice but to link to tensorflow.org/ The deleted links were to docs that no longer exist. PiperOrigin-RevId: 209019572
* Fix 2 bugs in the logic of the ODE, impacting efficiency:Gravatar A. Unique TensorFlower2018-08-13
| | | | | | | 1) if either of the side is always zero, you never want to do the multiplication 2) because of the zero at the end, the if clause was never hit, not saving those flops. PiperOrigin-RevId: 208457125
* Added optional argument to specify time step to contrib.integrate.odeint_fixed.Gravatar A. Unique TensorFlower2018-06-12
| | | | PiperOrigin-RevId: 200220800
* Expose odeint_fixed in tf.contrib.integrateGravatar Stephan Hoyer2018-04-05
| | | | PiperOrigin-RevId: 191769890
* Remove all_opensource_files. It's not needed any more.Gravatar Martin Wicke2018-03-28
| | | | PiperOrigin-RevId: 190878279
* Further BUILD cleanup in tensorflow/contrib/...Gravatar A. Unique TensorFlower2017-07-18
| | | | PiperOrigin-RevId: 162330841
* Add fixed-grid ODE integration routines.Gravatar A. Unique TensorFlower2017-06-16
| | | | | | | | | I'd like to have lighter-weight ODE integration ops available since doing backprop through integration with adaptive step size control is much more time consuming. Also: * Ran g4 fix on odes/odes_test. * Reordered some of the code in odes.py. (E.g. IMO better to have public functions first.) PiperOrigin-RevId: 159225626
* Update module docstrings to (consistently) link to the guide in theGravatar A. Unique TensorFlower2017-02-24
| | | | | | body instead of the title (consistently). Also fix some malformed @{$...} references and titles starting with "##". Change: 148476930
* Replace pip testing script with bazel.Gravatar Gunhan Gulsoy2017-02-13
| | | | Change: 147423640
* Documentation changes to adhere to new doc generatorGravatar Brennan Saeta2017-02-13
| | | | Change: 147402290
* Seal contrib interfaces (as much a feasible). If you were using a symbol ↵Gravatar Martin Wicke2017-01-29
| | | | | | which is now hidden, it should be added to the _allowed_symbols list in the appropriate __init__.py file. Change: 145943844
* Remove so many more hourglass importsGravatar Justine Tunney2016-12-29
| | | | Change: 143230429
* Add missing numpy and six depsGravatar Justine Tunney2016-12-28
| | | | Change: 143131671
* Switch array_ops.pack/unpack to array_ops.stack/unstack. Also switch a few ↵Gravatar A. Unique TensorFlower2016-12-15
| | | | | | remaining references to tf.pack/unpack to tf.stack/unstack. Change: 142108785
* Remove hourglass imports from kernel_testsGravatar Justine Tunney2016-12-14
| | | | Change: 142080137
* Change references to TensorArray.pack, TensorArray.unpack to TensorArray.stackGravatar A. Unique TensorFlower2016-12-09
| | | | | and TensorArray.unstack since pack and unpack are getting deprecated. Also, I switched a few references to tf.pack/tf.unpack to tf.stack and tf.unstack. Change: 141630998
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-11-02
| | | | Change: 137988710
* Add initial version of tf.contrib.integrateGravatar Stephan Hoyer2016-11-02
Includes tf.contrib.integrate.odeint, an integrator for ODEs patterned off of scipy.integrate.odeint. Change: 137973526