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
The numerical_distributions parameter is only valid for the existing columns in my metadata. Currently, the synthesizer is allowing me to pass in something like:
Check to make sure that the the dictionary keys in numerical_distributionsactually correspond to column names (as specified by the metadata object). If they do not, then throw an error:
SynthesizerInputError: Invalid column names found in the numerical_distributions dictionary (<list>).
The column names you provide must be present in the metadata.
Eg.
SynthesizerInputError: Invalid column names found in the numerical_distributions dictionary ('fake', 'fake2').
The column names you provide must be present in the metadata.
The text was updated successfully, but these errors were encountered:
Problem Description
In SDV 1.0, I will be able to specify numerical distributions using the API below:
The
numerical_distributions
parameter is only valid for the existing columns in my metadata. Currently, the synthesizer is allowing me to pass in something like:Expected behavior
Check to make sure that the the dictionary keys in
numerical_distributions
actually correspond to column names (as specified by themetadata
object). If they do not, then throw an error:The text was updated successfully, but these errors were encountered: