Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ValueError in the NewRowSynthesis metric (also impacts DiagnosticReport) #307

Closed
npatki opened this issue Feb 17, 2023 · 0 comments · Fixed by #313
Closed

Fix ValueError in the NewRowSynthesis metric (also impacts DiagnosticReport) #307

npatki opened this issue Feb 17, 2023 · 0 comments · Fixed by #313
Assignees
Labels
bug Something isn't working
Milestone

Comments

@npatki
Copy link
Contributor

npatki commented Feb 17, 2023

Environment Details

  • SDMetrics version: 0.9.0
  • Python version: 3.8
  • Operating System: Linux (Colab Notebook)

Error Description

If my data contains >32 columns, then the NewRowSynthesis metric crashes with a ValueError. This means that I can't run the DiagnosticReport.

Workaround

Until we make the fix, you can work around this issue by choosing a smaller set of columns when running this metric or a diagnostic report. As long as there are 32 or fewer columns, it seems to work.

Technical Fix

If there is an error in the pandas query method, we should try calling it again with engine='python'.

In this line of code we are only excepting a TypeError. We should also except a ValueError. Something like the following:

try:
    matches = real_data.query(' and '.join(row_filter))
except TypeError:
    if len(real_data) > 10000:
        warnings.warn('Unable to optimize query. For better formance, set the `synthetic_sample_size` parameter or upgrade to Python 3.8')
    matches = real_data.query(' and '.join(row_filter), engine='python')
except ValueError:
    matches = real_data.query(' and '.join(row_filter), engine='python')

This seems to work when I try it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants