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
For certain multi-table algorithms, it would be good if the primary keys were available after the transform step. This means they can't be created at the end during the reverse_transform.
Expected behavior
Add a method generate_primary_key to the DataProcessor.
It should take one parameter: num_rows - the number of rows to generate
This method should use the create_anonymized_column method that will be added to the HyperTransformer in this issue.
It should use the metadata to figure out how to initialize the AnonymizedFaker based on the sdtype for the primary key and then generate the column(s)
This method should be added to the transform process when is_condition is False.
The text was updated successfully, but these errors were encountered:
Problem Description
For certain multi-table algorithms, it would be good if the primary keys were available after the transform step. This means they can't be created at the end during the
reverse_transform
.Expected behavior
Add a method
generate_primary_key
to theDataProcessor
.num_rows
- the number of rows to generatecreate_anonymized_column
method that will be added to theHyperTransformer
in this issue.AnonymizedFaker
based on thesdtype
for the primary key and then generate the column(s)This method should be added to the
transform
process whenis_condition
is False.The text was updated successfully, but these errors were encountered: