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
In the returned dictionary from get_transformers(), I observed that the keys were out of order.
It would be nice if the keys were in the same order as the metadata, as the metadata is considered the ground truth. This will make it easier for me to inspect the transformers.
The text was updated successfully, but these errors were encountered:
fromsdv.datasets.demoimportdownload_demofromsdv.single_tableimportGaussianCopulaSynthesizer# metadata columns are in the order of: start_date, end_date, addressdata, metadata=download_demo(
modality='single_table',
dataset_name='student_placements_pii'
)
synthesizer=GaussianCopulaSynthesizer(metadata)
synthesizer.auto_assign_transformers(data)
synthesizer.get_transformers()
This prints out the dictionary in a different order
Problem Description
In the new SDV version 1.0, I am able to inspect the transformers that will be used if I run:
This returns a dictionary mapping each column name to the transformer object.
Expected behavior
In the returned dictionary from
get_transformers()
, I observed that the keys were out of order.It would be nice if the keys were in the same order as the metadata, as the metadata is considered the ground truth. This will make it easier for me to inspect the transformers.
The text was updated successfully, but these errors were encountered: