- N/A
- Removed the
dataset_schema
module, most methods in it have been deprecated since version 0.14. - Fix a bug where having an analyzer operate on the output of
tft.vocabulary
would cause it to evaluate incorrectly whenforce_tf_compat_v1=False
with TF2 behaviors enabled. - Depends on
tensorflow-metadata>=0.30.0,<0.31.0
. - Depends on
tfx-bsl>=0.30.0,<0.31.0
.
DatasetMetadata
no longer accepts a dict as its input schema.schema
is expected to be aSchema
proto now.- TF 1.15 specific APIs
apply_saved_model
andapply_function_with_checkpoint
were removed from thetft
namespace. They are still available under thepretrained_models
module. tft.AnalyzeDataset
,tft.AnalyzeDatasetWithCache
,tft.AnalyzeAndTransformDataset
andtft.TransformDataset
will use the native TF2 implementation of tf.transform unless TF2 behaviors are explicitly disabled. The previous behaviour can still be obtained by settingtft.Context.force_tf_compat_v1=True
.
- N/A