aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/util/tf_inspect.py
Commit message (Collapse)AuthorAge
* Merge pull request #22517 from IMBurbank:masterGravatar TensorFlower Gardener2018-10-02
|\ | | | | | | PiperOrigin-RevId: 215480021
| * Updated python3 tf_inspect.getargspec calls to use getfullargspec and ↵Gravatar IMBurbank2018-09-27
| | | | | | | | repackage the return values into the getargspec struct.
| * Update to use python 2-3 compatible function tf_inspect.getfullargspec.Gravatar IMBurbank2018-09-25
|/
* Adds generator support directly to Keras's fit, evaluate, and predict.Gravatar A. Unique TensorFlower2018-09-11
| | | | PiperOrigin-RevId: 212516939
* More getargspec cleanups.Gravatar Alexandre Passos2018-08-06
| | | | PiperOrigin-RevId: 207570391
* Adding getsourcefile and getsourcelines to tf_inspect.Gravatar A. Unique TensorFlower2018-07-09
| | | | PiperOrigin-RevId: 203779105
* Merge changes from github.Gravatar Yifei Feng2018-05-24
| | | | | | | Revert #18413. Too many internal test failures due to the name scope change caused by this change. Revert #18192. Cannot use re2::StringPiece internally. Need alternative for set call. Will pull and clean this up in a separate change. PiperOrigin-RevId: 197991247
* Fix `tf_inspect.getargspec` callable objects other than functions.Gravatar Mark Daoust2018-05-24
| | | | PiperOrigin-RevId: 197927601
* Support functools.partial as callable object in tf_inspect.getargspec.Gravatar A. Unique TensorFlower2018-05-17
| | | | PiperOrigin-RevId: 197036874
* Merge changes from github.Gravatar Scott Zhu2018-04-13
| | | | PiperOrigin-RevId: 192850372
* Lint fixes.Gravatar Martin Wicke2018-02-27
| | | | PiperOrigin-RevId: 187194778
* Bring in `isbuiltin`.Gravatar A. Unique TensorFlower2018-02-26
| | | | PiperOrigin-RevId: 187049824
* Add getmodule to tf_inspect.Gravatar A. Unique TensorFlower2018-02-16
| | | | PiperOrigin-RevId: 186021386
* Fixes #12466. Fix getfile in cases when .py files aren't available (only ↵Gravatar Anna R2018-01-19
| | | | | | | | .pyc files are used). PiperOrigin-RevId: 182554325
* Automated g4 rollback of changelist 179260538Gravatar Dandelion Man?2017-12-15
| | | | PiperOrigin-RevId: 179263865
* Automated g4 rollback of changelist 179258973Gravatar A. Unique TensorFlower2017-12-15
| | | | PiperOrigin-RevId: 179260538
* Merge changes from github.Gravatar Dandelion Man?2017-12-15
| | | | PiperOrigin-RevId: 179258973
* TFE: Clearer error message when enable_eager_execution is called more than onceGravatar Shanqing Cai2017-09-15
| | | | PiperOrigin-RevId: 168834147
* Introduce TFDecorator, a base class for Python TensorFlow decorators. ↵Gravatar Charles Nicholson2017-04-21
Provides basic introspection and "unwrap" services, allowing tooling code to fully 'understand' the wrapped object. Change: 153854044