Skip to content

Commit ea6ca19

Browse files
Add api docs for experimental submodule
1 parent 9010061 commit ea6ca19

File tree

3 files changed

+18
-0
lines changed

3 files changed

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

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,4 @@ nav:
127127
- API:
128128
- tft: api_docs/python/tft.md
129129
- tft.coders: api_docs/python/tft-coders.md
130+
- tft.experimental 🧪: api_docs/python/tft-experimental.md

tensorflow_transform/experimental/__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,17 @@
1616
from tensorflow_transform.experimental.analyzers import *
1717
from tensorflow_transform.experimental.annotators import *
1818
from tensorflow_transform.experimental.mappers import *
19+
20+
__all__ = [
21+
"annotate_sparse_output_shape",
22+
"annotate_true_sparse_output",
23+
"approximate_vocabulary",
24+
"CacheablePTransformAnalyzer",
25+
"compute_and_apply_approximate_vocabulary",
26+
"document_frequency",
27+
"get_vocabulary_size_by_name",
28+
"idf",
29+
"PTransformAnalyzerCacheCoder",
30+
"ptransform_analyzer",
31+
"SimpleJsonPTransformAnalyzerCacheCoder",
32+
]

0 commit comments

Comments
 (0)