aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/common
Commit message (Collapse)AuthorAge
* Fix usage of `docs_controls.should_skip`.Gravatar Mark Daoust2018-08-21
| | | | | | | | | | | | | | `docs_controls` was recently added to allow users to tag objects with `do_not_generate_docs` (it can be used as a decorator). This allows you to skip objects by _identity_, instead of path. In my initial implementation I checked for the tag in the doc generation step. This change fixes it to skip objects during the api-crawling step. This is necessary to avoid crawling the internals of all the excluded objects. To enable this, the `_is_private` method of PublicAPIVisitor needs access to the object, not just the path to it. The changes in `public_api` allow this. `generate_lib` uses the `_is_private` signature change to inspect the object. PiperOrigin-RevId: 209587765
* Make tf.keras rely on external keras_applications and keras_preprocessing ↵Gravatar Francois Chollet2018-08-08
| | | | | | modules. PiperOrigin-RevId: 207953769
* Exclude compiler.xla.experimental from the public api.Gravatar Gunhan Gulsoy2018-08-03
| | | | PiperOrigin-RevId: 207351070
* Change traverse_test.test_module to traverse a constructed dummy module ↵Gravatar A. Unique TensorFlower2018-05-17
| | | | | | rather than testcase itself. PiperOrigin-RevId: 197010681
* Remove all_opensource_files. It's not needed any more.Gravatar Martin Wicke2018-03-28
| | | | PiperOrigin-RevId: 190878279
* Automated g4 rollback of changelist 158565259Gravatar Gunhan Gulsoy2017-09-14
| | | | PiperOrigin-RevId: 168650887
* BUILD cleanup in tensorflow/tools/...Gravatar A. Unique TensorFlower2017-06-23
| | | | PiperOrigin-RevId: 160018623
* Adjust test sizesGravatar A. Unique TensorFlower2017-06-09
| | | | PiperOrigin-RevId: 158565259
* Make API do not descend map a bit more precise by includingGravatar A. Unique TensorFlower2017-06-09
| | | | | | the root module name. Add ability to mark symbols as private. PiperOrigin-RevId: 158563334
* Merge changes from github.Gravatar Dan Ringwalt2017-05-05
| | | | Change: 155209832
* 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
* Generalize LazyLoader for use by ffmpegGravatar Mark Daoust2017-04-19
| | | | | | Add __dir__ method so the docs generator doesn't need to do anything special to activate the loading Change: 153583515
* Add tensorboard to the _do_not_descend_map of the PublicAPIVisitor.Gravatar Mark Daoust2017-04-08
| | | | Change: 152592268
* Automated rollback of change 152310869Gravatar Martin Wicke2017-04-07
| | | | Change: 152528732
* API backwards compatibility tests.Gravatar Gunhan Gulsoy2017-04-05
| | | | Change: 152310869
* Add operators to classes in docs.Gravatar Martin Wicke2017-03-10
| | | | | | | | | | | | Enables all names looking like __XXXX__. It also excludes all the symbols defined in "uninteresting" base classes such as Exception, type, object, etc., as well as everything defined by protobuf, and methods (but not properties) defined by namedtuple. Sorts methods to have __init__ and __new__ first. Corrects links to _pb2.py files to point to .proto files instead. Removes redundant separate pages for class and static methods. Change: 149813108
* Replace pip testing script with bazel.Gravatar Gunhan Gulsoy2017-02-13
| | | | Change: 147423640
* Add linking to methods, and warnings for links to things that are notGravatar A. Unique TensorFlower2017-02-11
| | | | | | | | | in the index. This CL creates an overabundance of tags on class pages, but that doesn't hurt as long as we know ours. Demo reference to class field (tf.GraphKeys.REGULARIZATION_LOSSES) is in get_variable.md. Change: 147257988
* Exclude flags module from the public API.Gravatar Martin Wicke2017-02-10
| | | | Change: 147127454
* Fix for non-hermetic build.Gravatar A. Unique TensorFlower2017-02-09
| | | | Change: 147093777
* Doc generator fixes:Gravatar Martin Wicke2017-02-01
| | | | | | | | | - enable contrib - show __init__ - remove core.protobuf module - fix bug in _get_arg_spec - hide contrib.learn.head Change: 146265365
* Make a better doc generator.Gravatar Martin Wicke2017-01-31
| | | | Change: 146177492
* Fix a bad comment.Gravatar Martin Wicke2017-01-08
| | | | Change: 143889993
* Make a traversal tool to visit everything in a given Python module/class.Gravatar Martin Wicke2016-12-27
Change: 143061298