You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by da...@apache.org on 2022/11/03 13:52:01 UTC

[beam] 01/01: Add TFX support in pydoc

This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a commit to branch pydoc-tfx
in repository https://gitbox.apache.org/repos/asf/beam.git

commit ca051d92e60c3f04edfc16122f21d730c1a7b96e
Author: Danny McCormick <da...@google.com>
AuthorDate: Thu Nov 3 09:51:54 2022 -0400

    Add TFX support in pydoc
---
 sdks/python/apache_beam/ml/inference/__init__.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/sdks/python/apache_beam/ml/inference/__init__.py b/sdks/python/apache_beam/ml/inference/__init__.py
index 38b84df489b..02e043c4048 100644
--- a/sdks/python/apache_beam/ml/inference/__init__.py
+++ b/sdks/python/apache_beam/ml/inference/__init__.py
@@ -18,6 +18,11 @@
 """ A package with various modules for running inferences and predictions
 on models. This package contains support for popular frameworks as well
 as an interface for adding unsupported frameworks.
+
+Note: on top of the frameworks captured in submodules below, Beam also has
+a supported TFX model handler via the tfx-bsl library. See
+https://beam.apache.org/documentation/sdks/python-machine-learning/#tensorflow
+for more information on using TFX in Beam.
 """
 
 from apache_beam.ml.inference.base import RunInference