Commit Graph

34 Commits

Author SHA1 Message Date
Yong Tang
645fa02e67 Filter out None of site.USER_SITE in api_template_v1.__init__.py
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2020-04-18 03:04:48 +00:00
Anna R
5c00e793c6 Lazy load estimator instead of using virtual pip package. RFC: https://github.com/tensorflow/community/pull/182
PiperOrigin-RevId: 294847967
Change-Id: I327d075a2065e2ccf8ad5317882ebde14e3dc3d6
2020-02-12 23:53:18 -08:00
Gunhan Gulsoy
b3b8888c5c Make sure the kernel shared objects under core/kernels are loaded in pip package.
Fixes sobol op issues.

PiperOrigin-RevId: 287300711
Change-Id: I3658b47de5356173935f5761d7e73973c12cbb0f
2019-12-27 07:55:06 -08:00
Anna R
8f7f1e22b4 Add _major_api_version to top level __init__.py file to tell when we import
tensorflow version 1 or version 2 api. + Minor change to the way root_init_template flag is passed in (now it should be a location path instead of file name).

PiperOrigin-RevId: 286729526
Change-Id: I55ebaa0cfe0fe3db3f4d1e699082b1f7b11df4da
2019-12-21 11:06:05 -08:00
Lukas Geiger
860666581f Fix TensorFlow pip API generation 2019-11-27 02:01:27 +00:00
Billy Lamberta
18f700fa7e Docs: Updated links in docstrings for TF2
PiperOrigin-RevId: 272905147
2019-10-04 11:41:48 -07:00
Anna R
d82a2bbf8a Remove non-public module removals from api_template files. Instead, these
deletions are now applied in virtual_root_template.

PiperOrigin-RevId: 267071525
2019-09-03 20:29:45 -07:00
Anna R
386da9758d Automated rollback of commit 1d1f7dfcbd
PiperOrigin-RevId: 266040561
2019-08-28 18:39:06 -07:00
Anna R
1d1f7dfcbd Automated rollback of commit 1171258036
PiperOrigin-RevId: 265128581
2019-08-23 14:11:13 -07:00
Anna R
1171258036 Automated rollback of commit d9e313d107
PiperOrigin-RevId: 264970919
2019-08-22 20:17:44 -07:00
Anna R
d9e313d107 Automated rollback of commit e32d1900e5
PiperOrigin-RevId: 264953467
2019-08-22 19:32:19 -07:00
Anna R
e32d1900e5 Import submodules using relative imports. That is, "from .b import c" instead of "from a.b import c" in TF python API. This helps with autocomplete in PyCharms.
Specifically, it makes autocomplete work for `tf.image.` (with `import
tensorflow as tf`) or `image.` (with
`from tensorflow import image`).

PiperOrigin-RevId: 264901051
2019-08-22 13:46:03 -07:00
Mark Daoust
d61c300442 Warn about tf-nightly conversion to TF-2.0
PiperOrigin-RevId: 261350553
2019-08-02 11:31:56 -07:00
Yifei Feng
7ece5ce95f Add hooks to allow lazyLoad TensorFlow public API.
- Updates existing DeprecationWrapper with the ability to import modules only when they are referred.
- Updates how TensorFlow generates public API. Wraps all generated TensorFlow __init__.py modules with this enhanced wrapper.

To enable lazy-loading in the future, toggle _LAZY_LOADING flag in create_python_api.py.

Once lazy loading is enabled, the wrapper will have the following behaviors:
- dir() will always return module?s attributes.
- __all__ will always return all public APIs.
- __dict__ will be populated as attributes are being referred.
- After wrapper instance is created, to add more attributes, use setattr(import does not explicitly call setattr) to make sure dir, __all__, __dict__ are updated.
- import * will work as expected.

Built and tested with pip package.

PiperOrigin-RevId: 257240535
2019-07-09 13:03:21 -07:00
Anna R
e6939cfb03 Add compat.v2.compat.v1. It is useful if someone imports from
tensorflow.compat import v2 as tf and then calls tf.compat.v1.

PiperOrigin-RevId: 255301700
2019-06-26 19:58:33 -07:00
Mihai Maruseac
12f66fcf0a Add flags to __all__ in tensorflow v1 API.
We eagerly initialize __all__ variable in the API template and then we make more imports. This fix just adds required names to __all__.

PiperOrigin-RevId: 252469926
2019-06-10 13:31:47 -07:00
A. Unique TensorFlower
6fdce78040 PR : Fixed contrib warning, removing duplicate 'WARNING'
Imported from GitHub PR 

Remove duplicate "WARNING" from the contrib warning message.

Copybara import of the project:

  - 3b29cb320eeeafa64b19cb5fae07f29fb5ed3d04 Fixed contrib warning, removing duplicate 'WARNING' by Joshua Chia <joshchia@gmail.com>
  - e736b33cc011fd5a481bafb1173b247cd8aa0c9a Merge 3b29cb320eeeafa64b19cb5fae07f29fb5ed3d04 into b5039... by Joshua Chia <joshchia@gmail.com>

PiperOrigin-RevId: 248540705
2019-05-16 09:28:36 -07:00
Anna R
12ee342036 Automated rollback of commit 93b440f793
PiperOrigin-RevId: 244614266
2019-04-21 22:22:49 -07:00
A. Unique TensorFlower
f1f5865307 Automated rollback of commit 93b440f793
PiperOrigin-RevId: 244607830
2019-04-21 20:47:44 -07:00
Anna R
93b440f793 Prepend instead of appending external package directory to __path__. Resolves
.

PiperOrigin-RevId: 244606979
2019-04-21 20:33:18 -07:00
Anna R
88ca0db75e Import module directly in __init__.py template files instead of using
setattr in package_hook. This is more verbose now but fixes issue where PyCharm autocomplete won't find modules such as 'keras'. Resolves .

PiperOrigin-RevId: 244473718
2019-04-19 23:48:49 -07:00
James Ring
5a93bb319c Remove certain symbols from tensorflow.__all__.
When deleting `compiler`, `core` and `python` symbols from `tensorflow`,
we currently don't remove them from `__all__`. This breaks anybody who
tries to do `from tensorflow import *`.

PiperOrigin-RevId: 243897920
2019-04-16 17:38:20 -07:00
Yong Tang
f08662d728 Update deprecation notice for 2.0
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2019-03-10 01:24:26 +00:00
Nick Felt
754b8a18b2 Add 2.0 summary ops from TensorBoard to tf.summary via component package
This change has the effect of importing scalar(), image() and friends from TensorBoard's summary API into the TF 2.0 tf.summary module. It actually does so by replacing tf.summary entirely, via the component_api_helper() mechanism (in use for tf.estimator), with a replacement package from TensorBoard that re-exports the original tf.summary symbols, thereby creating a fused namespace.

The component package approach mitigates circular dependency issues (a risk because the TensorBoard ops in turn depend on TF) because the TF API __init__.py imports the core TF API symbols before it imports components, so if they in turn `import tensorflow` the module has been mostly initialized. It also means that TensorBoard needn't be importable at API generation time, only when TF is actually imported, which avoids issues like .

Tracking issue: .

PiperOrigin-RevId: 233874463
2019-02-13 19:30:01 -08:00
Nick Felt
0a958b9d69 fix logic adding generated API directory to tensorflow.__path__ 2019-01-11 19:11:17 -08:00
TensorFlower Gardener
d29506e655 Merge pull request from fo40225:fix_win_py27
PiperOrigin-RevId: 228221424
2019-01-07 14:10:43 -08:00
Gunhan Gulsoy
5195204b47 Add capability to load plugins installed via tensorflow-plugins pip directory.
PiperOrigin-RevId: 226091344
2018-12-18 17:58:41 -08:00
Michael Case
9088cf61c5 Separate out Keras API generation from TensorFlow.
When moving Keras to a separate repo, we will have to separate the API
generation from the rest of TensorFlow. The generated API files will have
to part of the Keras package, as core TensorFlow will have no way of knowing
which version of the tf.Keras API will be installed.

This CL does a few things...
- Move ALL @tf_export("keras.*") declarations in to keras/ directory.
  See python/keras/ops.py where I had to move lots of these decorators
  out of TensorFlow code.
- Change ALL @tf_export("keras.*") to @keras_export("keras.*"). Doing
  this will allow us to generate the public Keras python __init__.py files
  separately from the rest of the TensorFlow API.
- Add a new api_gen targets to keras/api/BUILD to generate this API.

PiperOrigin-RevId: 226050838
2018-12-18 13:41:44 -08:00
Martin Wicke
d32dee99a1 Add a warning message which happens when contrib is imported.
PiperOrigin-RevId: 225933307
2018-12-17 20:21:18 -08:00
Anna R
d5b902c648 Change api under tensorflow_estimator/python/estimator/api/ to generate 2.0
API as well.

PiperOrigin-RevId: 225876218
2018-12-17 13:40:44 -08:00
Michael Case
74ba359321 Move importing Estimator to after API_PLACEHOLDER text in template.
PiperOrigin-RevId: 225041387
2018-12-11 11:42:19 -08:00
fo40225
5a4871af05 fix AttributeError: 'module' object has no attribute '???'on windows python 2.7 2018-12-09 18:39:51 +08:00
Andrew Selle
4427005495 Move TensorFlow Lite Python into tensorflow.lite
Add tensorflow.contrib.lite into traversal of api generator.
+ Needed to change API generator to take list of deps and packages.
+ Exempt tensorflow.conrib.lite from METADATA dependency check (since
  we are moving)

PiperOrigin-RevId: 219483886
2018-10-31 09:25:19 -07:00
Anna R
5d0428080b Add api_template_v1.__init__.py. This way we can have separate __init__.py
files.

PiperOrigin-RevId: 218416863
2018-10-23 15:23:24 -07:00