data-validation icon indicating copy to clipboard operation
data-validation copied to clipboard

Replacing feature name with feature path in statistics proto

Open paulgc opened this issue 6 years ago • 0 comments

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.

paulgc avatar Jul 12 '19 18:07 paulgc