You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Towards the goal of adding support for computing statistics over structured data (e.g., arbitrary protocol buffers, parquet data), we will populate path for each feature instead of name in the output statistics proto. Path contains a repeated string field step.
Current behavior
features {
name: 'foo'
}
New behavior
features {
path {
step: 'foo'
}
}
TFDV 0.14 will have this new behavior. The validation API will be backwards compatible with the protos with name populated.
The text was updated successfully, but these errors were encountered:
… prepare for
the support for STRUCT features.
*** BREAKING CHANGE ***
Correspondingly, made TFDV populate FeatureNameStatistics.path __instead__ of .name.
Also see the announcement: #73
***********************
Also changed BasicStatsGenerator to assume a single chunk in its input table.
PiperOrigin-RevId: 258579936
Towards the goal of adding support for computing statistics over structured data (e.g., arbitrary protocol buffers, parquet data), we will populate
path
for each feature instead ofname
in the output statistics proto. Path contains a repeated string fieldstep
.Current behavior
New behavior
TFDV 0.14 will have this new behavior. The validation API will be backwards compatible with the protos with
name
populated.The text was updated successfully, but these errors were encountered: