File tree Expand file tree Collapse file tree 3 files changed +56
-0
lines changed
Expand file tree Collapse file tree 3 files changed +56
-0
lines changed Original file line number Diff line number Diff line change 1+ # TensorFlow Transform ` tft ` Module
2+
3+ ::: tensorflow_transform
Original file line number Diff line number Diff line change 124124 - Using tf.Transform with TensorFlow 2.x : tf2_support.md
125125 - Common Transformations : common_transformations.md
126126 - Data preprocessing best practices : tft_bestpractices.md
127+ - API :
128+ - tft : api_docs/python/tft.md
Original file line number Diff line number Diff line change 4141 from tensorflow_transform import google # pytype: disable=import-error # pylint: disable=g-import-not-at-top
4242except ImportError :
4343 pass
44+
45+ __all__ = [
46+ "annotate_asset" ,
47+ "apply_buckets" ,
48+ "apply_buckets_with_interpolation" ,
49+ "apply_pyfunc" ,
50+ "apply_vocabulary" ,
51+ "bag_of_words" ,
52+ "bucketize" ,
53+ "bucketize_per_key" ,
54+ "compute_and_apply_vocabulary" ,
55+ "count_per_key" ,
56+ "covariance" ,
57+ "DatasetMetadata" ,
58+ "deduplicate_tensor_per_row" ,
59+ "estimated_probability_density" ,
60+ "get_analyze_input_columns" ,
61+ "get_num_buckets_for_transformed_feature" ,
62+ "get_transform_input_columns" ,
63+ "hash_strings" ,
64+ "histogram" ,
65+ "make_and_track_object" ,
66+ "max" ,
67+ "mean" ,
68+ "min" ,
69+ "ngrams" ,
70+ "pca" ,
71+ "quantiles" ,
72+ "scale_by_min_max" ,
73+ "scale_by_min_max_per_key" ,
74+ "scale_to_0_1" ,
75+ "scale_to_0_1_per_key" ,
76+ "scale_to_gaussian" ,
77+ "scale_to_z_score" ,
78+ "scale_to_z_score_per_key" ,
79+ "segment_indices" ,
80+ "size" ,
81+ "sparse_tensor_left_align" ,
82+ "sparse_tensor_to_dense_with_shape" ,
83+ "sum" ,
84+ "tfidf" ,
85+ "TFTransformOutput" ,
86+ "TransformFeaturesLayer" ,
87+ "tukey_h_params" ,
88+ "tukey_location" ,
89+ "tukey_scale" ,
90+ "var" ,
91+ "__version__" ,
92+ "vocabulary" ,
93+ "word_count" ,
94+ ]
You can’t perform that action at this time.
0 commit comments