Skip to content

Commit 9010061

Browse files
Add tft.coders api docs
1 parent c015d24 commit 9010061

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

docs/api_docs/python/tft-coders.md

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

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,4 @@ nav:
126126
- Data preprocessing best practices: tft_bestpractices.md
127127
- API:
128128
- tft: api_docs/python/tft.md
129+
- tft.coders: api_docs/python/tft-coders.md

tensorflow_transform/coders/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,8 @@
1515

1616
from tensorflow_transform.coders.csv_coder import CsvCoder
1717
from tensorflow_transform.coders.example_proto_coder import ExampleProtoCoder
18+
19+
__all__ = [
20+
"CsvCoder",
21+
"ExampleProtoCoder",
22+
]

0 commit comments

Comments
 (0)