Skip to content

Commit 11ba8c9

Browse files
Add api docs for tft.beam
1 parent ea6ca19 commit 11ba8c9

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

docs/api_docs/python/tft-beam.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# TensorFlow Transform `tft.beam` Module
2+
3+
::: tensorflow_transform.beam

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,3 +128,4 @@ nav:
128128
- tft: api_docs/python/tft.md
129129
- tft.coders: api_docs/python/tft-coders.md
130130
- tft.experimental 🧪: api_docs/python/tft-experimental.md
131+
- tft.beam: api_docs/python/tft-beam.md

tensorflow_transform/beam/__init__.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,15 @@
3737
import tensorflow_io as _ # pytype: disable=import-error # pylint: disable=g-import-not-at-top
3838
except ModuleNotFoundError:
3939
pass
40+
41+
__all__ = [
42+
"AnalyzeAndTransformDataset",
43+
"AnalyzeDataset",
44+
"AnalyzeDatasetWithCache",
45+
"Context",
46+
"EncodeTransformedDataset",
47+
"ReadTransformFn",
48+
"TransformDataset",
49+
"WriteMetadata",
50+
"WriteTransformFn",
51+
]

0 commit comments

Comments
 (0)